Add network configuration templates

This changeset adds templates used by osbash/wbatch guest-side scripts
when creating network configuration files.

The template-ubuntu-interfaces-* files are for /etc/network/interfaces
(as used by Ubuntu and Debian).

The template-fedora-ifcfg-* files are for ifcfg-<interfacename> files
in /etc/sysconfig/network-scripts/ (as used by Fedora).

Partial-Bug: 1312764
Implements: blueprint openstack-training-labs
Change-Id: I0aebc71e416bf931aa698d66d9e135ba05fda017
This commit is contained in:
Roger Luethi 2014-06-16 15:49:23 +02:00
parent e28cf12271
commit c628cc38c4
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