Skip to content

Instantly share code, notes, and snippets.

@nisanthchunduru
Created August 22, 2017 18:19
Show Gist options
  • Save nisanthchunduru/6802ada606aa39cd3b35aea3fdfd5d8c to your computer and use it in GitHub Desktop.
Save nisanthchunduru/6802ada606aa39cd3b35aea3fdfd5d8c to your computer and use it in GitHub Desktop.
Missing IPv6 Configuration
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
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