Question
6to4 within DO on Ubuntu
I need to get IPv6 connectivity to my droplet up and running and I figured I'd use 6to4 for a quick and easy setup.
Ubuntu 14.04 makes it easy. In the interfaces file:
auto tun6to4
iface tun6to4 inet6 6to4
local 162.243.xx.xx (IP of eth0)
mtu 1480
Nice and simple. :)
interface:
25: tun6to4: mtu 1480 qdisc noqueue state UNKNOWN group default
link/sit 162.243.xx.xx brd 0.0.0.0
inet6 2002:a2f3:xxxx::1/16 scope global
valid_lft forever preferred_lft forever
route entry:
2000::/3 via ::192.88.99.1 dev tun6to4 metric 1024
I *receive* any packets going to 2002:a2f3:xxxx::/16 but outgoing packets don't get to their destination. I've checked a packet capture and yes, the outgoing packets are correctly formed.
Has anyone else had luck?
Add a comment
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×