Last active
August 29, 2015 14:27
-
-
Save nickpegg/829c3cd70d7da18388cd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# outside | |
allow-hotplug eth0 | |
iface eth0 inet dhcp | |
hwaddress ether AA:BB:CC:DD:EE:FF | |
dns-search home.nickpegg.com nickpegg.com | |
dns-nameservers 8.8.8.8 8.8.4.4 | |
iface eth0 inet6 auto | |
iface eth1 inet manual | |
iface wlan0 inet manual | |
auto br0 | |
iface br0 inet static | |
address 10.0.0.1 | |
netmask 255.255.255.0 | |
bridge_ports eth1 | |
iface br0 inet6 static | |
address 2001:470:6661:7274::1 | |
netmask 64 | |
auto he-ipv6 | |
iface he-ipv6 inet6 v4tunnel | |
address $CLIENT_IPV6_ADDRESS | |
netmask 64 | |
endpoint $SERVER_IPV4_ADDRESS | |
gateway $SERVER_IPV6_ADDRESS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment