ignore ipv6 router advertisements for static addresses with bonded interfaces
- by boran
I need to attribute static IPv6 addresses (not use autoconfigured addresses, and ignore router advertisements).
This can be done as follows for a standard interface like eth0
iface eth0 inet6 static
address myprefix:mysubnet::myip
gateway myprefix:mysubnet::mygatewayip
netmask 64
pre-up /sbin/sysctl -q -w net.ipv6.conf.$IFACE.autoconf=0
…