How to modify interface configuration
Posted: 07 Jan 2011, 19:43
Hi,
I am trying to use B3 for IPv6 access. Following the instructions on http://madduck.net/docs/ipv6/ I have managed to add IPv6 support to B3. I have however not managed to "export" the IPv6 to the other computers in my network.
Looking at the instructions my understanding is that I need to add configurations for eth1 (and I guess wlan0). In the /etc/network/interfaces file there is however no entry for eth1.
How do I add the needed configuration for eth1?
My interface file, with the IP addresses removed, can be seen below.
Best Regards,
Morgan
I am trying to use B3 for IPv6 access. Following the instructions on http://madduck.net/docs/ipv6/ I have managed to add IPv6 support to B3. I have however not managed to "export" the IPv6 to the other computers in my network.
Looking at the instructions my understanding is that I need to add configurations for eth1 (and I guess wlan0). In the /etc/network/interfaces file there is however no entry for eth1.
How do I add the needed configuration for eth1?
My interface file, with the IP addresses removed, can be seen below.
Code: Select all
iface br0 inet dhcp
bridge_fd 0
bridge_maxwait 0
bridge_ports eth1 wlan0
iface eth0 inet dhcp
auto lo
iface lo inet loopback
auto sixxs
iface sixxs inet6 v4tunnel
endpoint x.x.x.x
address y:y:y:y::2
netmask 64
gateway z:z:z:z::1
ttl 64
pre-up ip6tables-restore < /etc/network/ip6tables
up ip link set mtu 1280 dev $IFACE
up invoke-rc.d aiccu start
down invoke-rc.d aiccu stop
Morgan