1 Red Hat network scripts integration
2 -----------------------------------
4 The RPM packages for Open vSwitch provide some integration with Red
5 Hat's network scripts. Using this integration is optional.
7 To use the integration for a Open vSwitch bridge or interface named
8 <name>, create or edit /etc/sysconfig/network-scripts/ifcfg-<name>.
9 This is a shell script that consists of a series of VARIABLE=VALUE
10 assignments. The following OVS-specific variable names are supported:
12 - DEVICETYPE: Always set to "ovs".
14 - TYPE: If this is "OVSBridge", then this file represents an OVS
15 bridge named <name>. Otherwise, it represents a port on an OVS
16 bridge and TYPE must have one of the following values:
18 * "OVSPort", if <name> is a physical port (e.g. eth0) or
19 virtual port (e.g. vif1.0).
21 * "OVSIntPort", if <name> is an internal port (e.g. a tagged
24 * "OVSBond", if <name> is an OVS bond.
26 - OVS_BRIDGE: If TYPE is anything other than "OVSBridge", set to
27 the name of the OVS bridge to which the port should be attached.
29 - OVS_OPTIONS: Optionally, extra options to set in the "Port"
30 table when adding the port to the bridge, as a sequence of
31 column[:key]=value options. For example, "tag=100" to make the
32 port an access port for VLAN 100. See the documentation of
33 "add-port" in ovs-vsctl(8) for syntax and the section on the
34 Port table in ovs-vswitchd.conf.db(5) for available options.
36 - OVS_EXTRA: Optionally, additional ovs-vsctl commands, separated
37 by "--" (double dash).
39 - BOND_IFACES: For "OVSBond" interfaces, a list of physical
40 interfaces to bond together.
45 "ifdown" on a bridge will not bring individual ports on the bridge
46 down. "ifup" on a bridge will not add ports to the bridge. This
47 behavior should be compatible with standard bridges (with
55 ==> ifcfg-ovsbridge0 <==
65 Enable DHCP on the bridge:
66 * Needs OVSBOOTPROTO instead of BOOTPROTO.
67 * All the interfaces that can reach the DHCP server
68 as a comma separated list in OVSDHCPINTERFACES.
75 OVSDHCPINTERFACES="eth0"
78 Adding physical eth0 to ovsbridge0 described above:
90 Tagged VLAN interface on top of ovsbridge0:
100 OVS_BRIDGE=ovsbridge0
101 OVS_OPTIONS="tag=100"
102 OVS_EXTRA="set Interface $DEVICE external-ids:iface-id=$(hostname -s)-$DEVICE-vif"
113 OVS_BRIDGE=ovsbridge0
115 BOND_IFACES="gige-1b-0 gige-1b-1 gige-21-0 gige-21-1"
116 OVS_OPTIONS="bond_mode=balance-tcp lacp=active"
127 Please report problems to bugs@openvswitch.org.