2007-05-23 01:45:46 +02:00
|
|
|
## Path: System/Virtualization
|
|
|
|
## Description:
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: string(xenbr)
|
|
|
|
## Default: "xenbr"
|
2007-05-23 01:45:46 +02:00
|
|
|
## Config:
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Name of bridge to create (xenbr0, xenbr1, etc.)
|
|
|
|
#
|
|
|
|
BRIDGE_NAME="xenbr"
|
|
|
|
|
|
|
|
## Type: list()
|
|
|
|
## Default: "eth0"
|
|
|
|
## Config:
|
|
|
|
#
|
2007-05-23 01:45:46 +02:00
|
|
|
# Space delimited list of physical network
|
2007-06-23 00:22:21 +02:00
|
|
|
# devices to create traditional bridges on
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Example: "eth0 eth1 eth2"
|
|
|
|
#
|
|
|
|
# The above example would create 3 traditional bridges
|
|
|
|
# xenbr0 on eth0, xenbr1 on eth1 and xenbr2 on eth2
|
|
|
|
#
|
|
|
|
BRIDGE_NETDEV_LIST="eth0"
|
2007-05-23 01:45:46 +02:00
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: list()
|
2007-05-23 01:45:46 +02:00
|
|
|
## Default: ""
|
|
|
|
## Config:
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Space delimited list of virtual network devices,mac addresses
|
|
|
|
# and IP addresses to create local bridges on using the following format:
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# <virtual network device>,<mac address>,<IP address/CIDR NetMask>,<nat|hostonly|route>
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Example: "veth2,00:16:3E:01:00:02,172.22.0.1/16,nat veth3,00:16:3E:01:00:03,172.23.0.1/16,hostonly"
|
|
|
|
#
|
|
|
|
# The above example would create 2 local bridged the first being a NATed network
|
|
|
|
# and the second being a host only network
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
LOCAL_BRIDGE_LIST="veth2,00:16:3E:01:00:02,172.22.0.1/16,nat veth3,00:16:3E:01:00:03,172.23.0.1/16,hostonly"
|
2007-05-23 01:45:46 +02:00
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: list()
|
2007-05-23 01:45:46 +02:00
|
|
|
## Default: ""
|
|
|
|
## Config:
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Space delimited list of bridge numbers to
|
|
|
|
# create empty bridges on.
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Example: "4 5"
|
|
|
|
#
|
|
|
|
# The above example would create two empty bridges named xenbr4 and xenbr5
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
EMPTY_BRIDGE_LIST="4"
|
2007-05-23 01:45:46 +02:00
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: string(eth0,eth1,eth2,eth3)
|
2007-05-23 01:45:46 +02:00
|
|
|
## Default: "eth0"
|
|
|
|
## Config:
|
|
|
|
#
|
|
|
|
# Network interface to use as the external interface for NATed
|
|
|
|
# and Routed networks
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
NAT_EXTERNAL_INTERFACE="eth0"
|
2007-05-23 01:45:46 +02:00
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: boolean
|
|
|
|
## Default: "false"
|
|
|
|
## Config:
|
|
|
|
#
|
|
|
|
# If set to true the xend-relocation script will enable/disable
|
|
|
|
# the vm migration feature of xend..
|
|
|
|
#
|
|
|
|
ENABLE_RELOCATION="false"
|
|
|
|
|
|
|
|
## Type: list()
|
2007-05-23 01:45:46 +02:00
|
|
|
## Default: "any"
|
|
|
|
## Config:
|
|
|
|
#
|
|
|
|
# Space delimited list of IP addresses/host names of machines
|
|
|
|
# that xen will accept vm migrations from. If set to 'any'
|
|
|
|
# xen will accept vm migrations from any host
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# Example: "10.0.0.1 10.0.0.2" would allow relocation to/from thos IPs
|
|
|
|
# Example: "any" would allow reloaction to/from any host
|
|
|
|
#
|
2007-05-23 01:45:46 +02:00
|
|
|
RELOCATION_NODELIST="any"
|
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: boolean
|
|
|
|
## Default: "false"
|
2007-05-23 01:45:46 +02:00
|
|
|
## Config:
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
# If set to true the xend-relocation script will attempt to
|
|
|
|
# enable/disable vm migration on all relocation nodes listed
|
|
|
|
# in the RELOCATION_LIST variable.
|
2007-05-23 01:45:46 +02:00
|
|
|
#
|
|
|
|
# Note: Communication with the nodes is done via ssh so
|
|
|
|
# pre-distributed ssh keys is recommended.
|
|
|
|
#
|
2007-06-23 00:22:21 +02:00
|
|
|
MANAGE_ALL_RELOCATION_NODES="false"
|
2007-05-23 01:45:46 +02:00
|
|
|
|
2007-06-23 00:22:21 +02:00
|
|
|
## Type: integer
|
2007-05-23 01:45:46 +02:00
|
|
|
## Default: "8002"
|
|
|
|
## Config:
|
|
|
|
#
|
|
|
|
# The TCP port used by Xen for VM relocation
|
|
|
|
#
|
|
|
|
XEN_RELOCATION_PORT="8002"
|
|
|
|
|