[ create a new paste ] login | about

Link: http://codepad.org/BoFMV18z    [ raw code | fork ]

Plain Text, pasted on Dec 15:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# If VNET_MODE is set to STATIC, you can manually configure a set of
# IP addresses that will be allocated to VMs at boot time in a first
# come, first served manner.  VNET_SUBNET, VNET_NETMASK, and
# VNET_BROADCAST define your subnet (front-end must have an interface
# configured on this subnet).  VNET_ROUTER defines the subnet's
# gateway.  VNET_DNS is a nameserver address.  It is usually safe to
# get these settings by examining your front-end network settings and
# duplicating them here.  VNET_MACMAP is a list of mac address/IP
# address mappings that you would like to be allocated to VMs at run
# time (see example below for the format of this list).
VNET_MODE="STATIC"
VNET_SUBNET="10.242.38.0"
VNET_NETMASK="255.255.255.0"
VNET_BROADCAST="10.242.38.0"
VNET_ROUTER="10.242.38.1"
VNET_DNS="10.242.33.20"
VNET_MACMAP="AA:DD:11:CE:FF:ED=10.242.38.245 AA:DD:11:CE:FF:EE=10.242.38.246"



Create a new paste based on this one


Comments: