# IPv6 on Debian hosts ## `/etc/network/interfaces` ``` auto lo iface lo inet loopback iface lo inet6 loopback # IPv6 on lookback device [...] iface eth0 inet6 static address netmask 64 gateway # these should work but somehow don't. Therefore the workaround using /etc/rc.local #post-up /sbin/ip -f inet6 route add dev eth0 #post-up /sbin/ip -f inet6 route add default via #pre-down /sbin/ip -f inet6 route del default via #pre-down /sbin/ip -f inet6 route del dev eth0 ``` ## `/etc/rc.local` ``` ```