I've been going around in circles with IPv6. Reading a few of the forum posts on IP6 it looks like I have temporary dynamic IP6 addressing happening on eth0.
This wasn't showing up until I rebooted, but ping6 didn't work prior to the reboot either.
Code:
server:/home/kangaby.com# ip -6 addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qlen 1000
inet6 2600:3c00::f03c:91ff:fe96:be0e/64 scope global mngtmpaddr dynamic
valid_lft 2591998sec preferred_lft 604798sec
inet6 fe80::f03c:91ff:fe96:be0e/64 scope link
valid_lft forever preferred_lft forever
3: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qlen 100
inet6 2600:3c00:e001:2901::1/64 scope global
valid_lft forever preferred_lft forever
server:/home/kangaby.com# sysctl -p
net.ipv4.ip_forward = 1
server:/home/kangaby.com# sysctl -a | grep use_tempaddr
net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.eth0.use_tempaddr = 0
net.ipv6.conf.lo.use_tempaddr = 0
net.ipv6.conf.tun0.use_tempaddr = 0
server:/home/kangaby.com# ping6 ipv6.google.com
PING ipv6.google.com(oj-in-x71.1e100.net) 56 data bytes
^C
--- ipv6.google.com ping statistics ---
22 packets transmitted, 0 received, 100% packet loss, time 20999ms
You probably need more information than I've provided, so just ask for the stuff I've missed.
There is either something simple I've missed or Debian Jessie is doing it differently or with systemd, which I don't understand at all.
I have no IP6Tables stuff:
Code:
server:/home/kangaby.com# ip6tables-save
server:/home/kangaby.com#
Shutting down openvpn tun0: doesn't make any difference to ping6.
Code:
server:/home/kangaby.com# /etc/init.d/openvpn stop
[ ok ] Stopping openvpn (via systemctl): openvpn.service.
server:/home/kangaby.com# ping6 ipv6.google.com
PING ipv6.google.com(ob-in-x71.1e100.net) 56 data bytes
^C
--- ipv6.google.com ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3022ms
Suggestions welcome.