63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
## Path: System/Virtualization
|
|
## Description:
|
|
## Type: string(xenbr)
|
|
## Default: "xenbr"
|
|
## Config:
|
|
#
|
|
# Name of bridge to create (xenbr0, xenbr1, etc.)
|
|
#
|
|
BRIDGE_NAME="xenbr"
|
|
|
|
## Type: list()
|
|
## Default: "eth0"
|
|
## Config:
|
|
#
|
|
# Space delimited list of physical network
|
|
# devices to create traditional bridges on
|
|
#
|
|
# 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"
|
|
|
|
## Type: list()
|
|
## Default: ""
|
|
## Config:
|
|
#
|
|
# Space delimited list of virtual network devices,mac addresses
|
|
# and IP addresses to create local bridges on using the following format:
|
|
#
|
|
# <virtual network device>,<mac address>,<IP address/CIDR NetMask>,<nat|hostonly|route>
|
|
#
|
|
# 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
|
|
#
|
|
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"
|
|
|
|
## Type: list()
|
|
## Default: ""
|
|
## Config:
|
|
#
|
|
# Space delimited list of bridge numbers to
|
|
# create empty bridges on.
|
|
#
|
|
# Example: "4 5"
|
|
#
|
|
# The above example would create two empty bridges named xenbr4 and xenbr5
|
|
#
|
|
EMPTY_BRIDGE_LIST="4"
|
|
|
|
## Type: string(eth0,eth1,eth2,eth3)
|
|
## Default: "eth0"
|
|
## Config:
|
|
#
|
|
# Network interface to use as the external interface for NATed
|
|
# and Routed networks
|
|
#
|
|
NAT_EXTERNAL_INTERFACE="eth0"
|
|
|