Merge "Add network configuration templates"

This commit is contained in:
Jenkins 2014-06-17 03:50:19 +00:00 committed by Gerrit Code Review
commit d9a990396a
5 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DEVICE=%IF_NAME%
ONBOOT=yes
BOOTPROTO=none
IPADDR=%IP_ADDRESS%
NETMASK=255.255.255.0

View File

@ -0,0 +1,4 @@
# VirtualBox NAT -- for Internet access to VM
DEVICE=%IF_NAME%
ONBOOT=yes
BOOTPROTO=dhcp

View File

@ -0,0 +1,4 @@
auto %IF_NAME%
iface %IF_NAME% inet static
address %IP_ADDRESS%
netmask 255.255.255.0

View File

@ -0,0 +1,3 @@
# The loopback network interface
auto lo
iface lo inet loopback

View File

@ -0,0 +1,3 @@
# VirtualBox NAT -- for Internet access to VM
auto eth0
iface eth0 inet dhcp