Created
August 22, 2017 18:19
-
-
Save nisanthchunduru/6802ada606aa39cd3b35aea3fdfd5d8c to your computer and use it in GitHub Desktop.
Missing IPv6 Configuration
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
| root@Ubuntu-1604-xenial-64-minimal ~ # cat /etc/network/interfaces | |
| ### Hetzner Online GmbH installimage | |
| source /etc/network/interfaces.d/* | |
| auto lo | |
| iface lo inet loopback | |
| iface lo inet6 loopback | |
| auto eth0 | |
| iface eth0 inet static | |
| address 176.9.149.227 | |
| netmask 255.255.255.224 | |
| gateway 176.9.149.225 | |
| # route 176.9.149.224/27 via 176.9.149.225 | |
| up route add -net 176.9.149.224 netmask 255.255.255.224 gw 176.9.149.225 dev eth0 |
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
| root@Ubuntu-1604-xenial-64-minimal ~ # cat /etc/network/interfaces | |
| ### Hetzner Online GmbH installimage | |
| source /etc/network/interfaces.d/* | |
| auto lo | |
| iface lo inet loopback | |
| iface lo inet6 loopback | |
| auto eth0 | |
| iface eth0 inet static | |
| address 176.9.149.228 | |
| netmask 255.255.255.224 | |
| gateway 176.9.149.225 | |
| # route 176.9.149.224/27 via 176.9.149.225 | |
| up route add -net 176.9.149.224 netmask 255.255.255.224 gw 176.9.149.225 dev eth0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment