Created
August 13, 2017 07:27
-
-
Save jasperf/6eebdfa3e6565e81be1763a37c976d1d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
sudo ip -6 addr add public_ipv6_address/64 dev eth0 | |
sudo ip -6 route add default via public_ipv6_gateway dev eth0 | |
sudo nano /etc/network/interfaces | |
iface eth0 inet6 static | |
address primary_ipv6_address | |
netmask 64 | |
gateway ipv6_gateway | |
autoconf 0 | |
dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888 209.244.0.3 | |
2a03:b0c0:0:1010::14ab:f001 (ipv6 public address) | |
sudo ip -6 addr add 2a03:b0c0:0:1010::14ab:f001/64 dev eth0 | |
2a03:b0c0:0:1010::1 | |
sudo ip -6 route add default via 2a03:b0c0:0:1010::1 dev eth0 | |
sudo nano /etc/network/interfaces | |
iface eth0 inet6 static | |
address 2a03:b0c0:0:1010::14ab:f001 | |
netmask 64 | |
gateway 2a03:b0c0:0:1010::1 | |
autoconf 0 | |
dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888 209.244.0.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment