Last active
August 29, 2015 14:24
-
-
Save adamretter/57d0a03fd28ba2ff5544 to your computer and use it in GitHub Desktop.
kvm-guest
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
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet static | |
address 5.196.205.132 | |
netmask 255.255.255.255 | |
broadcast 5.196.205.132 | |
gateway 91.121.89.254 | |
post-up /sbin/route add 91.121.89.254 dev eth0 | |
post-up /sbin/route add default gw 91.121.89.254 | |
pre-down /sbin/route del 91.121.89.254 dev eth0 | |
pre-down /sbin/route del default gw 91.121.89.254 | |
dns-search ovh.net | |
dns-nameservers 213.186.33.99 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment