]> git.proxmox.com Git - mirror_ovs.git/blame - debian/openvswitch-switch.README.Debian
Set release date for 2.7.0.
[mirror_ovs.git] / debian / openvswitch-switch.README.Debian
CommitLineData
064af421
BP
1README.Debian for openvswitch-switch
2---------------------------------
3
f085ba1e
BP
4To use the Linux kernel-based switch implementation, you will need an
5Open vSwitch kernel module. There are multiple ways to obtain one.
6In order of increasing manual effort, these are:
064af421 7
f085ba1e
BP
8 * Use a Linux kernel 3.3 or later, which has an integrated Open
9 vSwitch kernel module.
10
11 The upstream Linux kernel module lacks a few features that
12 are in the third-party module. For details, please see the
13 FAQ, "What features are not available in the Open vSwitch
14 kernel datapath that ships as part of the upstream Linux
15 kernel?".
16
17 * Install the "openvswitch-datapath-dkms" Debian package that
18 you built earlier. This should automatically build and
19 install the Open vSwitch kernel module for your running
20 kernel.
21
22 This option requires that you have a compiler and toolchain
23 installed on the machine where you run Open vSwitch, which
24 may be unacceptable in some production server environments.
25
26 * Install the "openvswitch-datapath-source" Debian package, use
27 "module-assistant" to build a Debian package of the Open
28 vSwitch kernel module for your kernel, and then install that
29 Debian package.
30
31 You can install the kernel module Debian packages that you
32 build this way on the same machine where you built it or on
33 another machine or machines, which means that you don't
34 necessarily have to have any build infrastructure on the
35 machines where you use the kernel module.
36
37 /usr/share/doc/openvswitch-datapath-source/README.Debian has
38 details on the build process.
39
40 * Build and install the kernel module by hand.
064af421 41
86b87c92
GS
42
43Debian network scripts integration
44----------------------------------
45This package lets a user to optionally configure Open vSwitch bridges
46and ports from /etc/network/interfaces. Please refer to the interfaces(5)
47manpage for more details regarding /etc/network/interfaces.
48
49The stanzas that configure the OVS bridges should begin with "allow-ovs"
50followed by name of the bridge. Here is an example.
51allow-ovs br0
52
53The stanzas that configure the OVS ports should begin with
54"allow-${bridge-name}" followed by name of the port. Here is an example.
55allow-br0 eth0
56
57The following OVS specific "command" options are supported:
58
5b245e73
GS
59 - ovs_type: This can either be OVSBridge, OVSPort, OVSIntPort, OVSBond,
60 OVSPatchPort or OVSTunnel depending on whether you configure a bridge,
61 port, an internal port, a bond, a patch port or a tunnel. This is a
62 required option.
86b87c92
GS
63
64 - ovs_ports: This option specifies all the ports that belong to a bridge.
65
66 - ovs_bridge: This options specifies a bridge to which a port belongs.
67 This is a required option for a port.
68
69 - ovs_bonds: This option specifies the list of physical interfaces to be
70 bonded together.
71
5b245e73
GS
72 - ovs_patch_peer: For "OVSPatchPort" interfaces, this field specifies
73 the patch's peer on the other bridge.
74
364e0394
GS
75 - ovs_tunnel_type: For "OVSTunnel" interfaces, the type of the tunnel.
76 For example, "gre", "vxlan", etc.
77
78 - ovs_tunnel_options: For "OVSTunnel" interfaces, this field should be
79 used to specify the tunnel options like remote_ip, key, etc.
80
86b87c92
GS
81 - ovs_options: This option lets you add extra arguments to a ovs-vsctl
82 command. See examples.
83
84 - ovs_extra: This option lets you run additional ovs-vsctl commands,
85 separated by "--" (double dash). Variables can be part of the "ovs_extra"
86 option. You can provide all the standard environmental variables
87 described in the interfaces(5) man page. You can also pass shell
88 commands.
89
90More implementation specific details can be seen in the examples.
91
92Examples:
93--------
94ex 1: A standalone bridge.
95
96allow-ovs br0
97iface br0 inet static
98 address 192.168.1.1
99 netmask 255.255.255.0
100 ovs_type OVSBridge
101
102ex 2: A bridge with one port.
103
104allow-ovs br0
105iface br0 inet dhcp
106 ovs_type OVSBridge
107 ovs_ports eth0
108
109allow-br0 eth0
110iface eth0 inet manual
111 ovs_bridge br0
112 ovs_type OVSPort
113
114ex 3: A bridge with multiple physical ports.
115
116allow-ovs br0
117iface br0 inet dhcp
118 ovs_type OVSBridge
119 ovs_ports eth0 eth1
120
121allow-br0 eth0
122iface eth0 inet manual
123 ovs_bridge br0
124 ovs_type OVSPort
125
126allow-br0 eth1
127iface eth1 inet manual
128 ovs_bridge br0
129 ovs_type OVSPort
130
131ex 4: A bridge with an OVS internal port.
132
133allow-ovs br1
134iface br1 inet static
135 address 192.168.1.1
136 netmask 255.255.255.0
137 ovs_type OVSBridge
138 ovs_ports vlan100
139
140allow-br1 vlan100
141iface vlan100 inet manual
142 ovs_bridge br1
143 ovs_type OVSIntPort
144 ovs_options tag=100
145 ovs_extra set interface ${IFACE} external-ids:iface-id=$(hostname -s)
146
147ex 5: Bonding.
148
149allow-ovs br2
150iface br2 inet static
151 address 192.170.1.1
152 netmask 255.255.255.0
153 ovs_type OVSBridge
154 ovs_ports bond0
155
156allow-br2 bond0
157iface bond0 inet manual
158 ovs_bridge br2
159 ovs_type OVSBond
160 ovs_bonds eth2 eth3
161 ovs_options bond_mode=balance-tcp lacp=active
162
5b245e73
GS
163ex 6: Patch ports.
164
165allow-ovs br0
166iface br0 inet manual
167 ovs_type OVSBridge
168 ovs_ports patch0
169
170allow-br0 patch0
171iface patch0 inet manual
172 ovs_bridge br0
173 ovs_type OVSPatchPort
174 ovs_patch_peer patch1
175
176allow-ovs br1
177iface br1 inet manual
178 ovs_type OVSBridge
179 ovs_ports patch1
180
181allow-br1 patch1
182iface patch1 inet manual
183 ovs_bridge br1
184 ovs_type OVSPatchPort
185 ovs_patch_peer patch0
186
187ex 7: Tunnel.
364e0394
GS
188
189allow-ovs br1
190iface br1 inet static
191 address 192.168.1.1
192 netmask 255.255.255.0
193 ovs_type OVSBridge
194 ovs_ports gre1
195
196allow-br1 gre1
197iface gre1 inet manual
198 ovs_bridge br1
199 ovs_type OVSTunnel
200 ovs_tunnel_type gre
201 ovs_tunnel_options options:remote_ip=182.168.1.2 options:key=1
202
5b245e73 203ex 8: Create and destroy bridges.
86b87c92
GS
204
205ifup --allow=ovs $list_of_bridges
206ifdown --allow=ovs $list_of_bridges
9a8b5cc1
GS
207
208Notes on dependencies:
209---------------------
210
211openvswitch-switch depends on $network, $named $remote_fs and $syslog to start.
212This creates some startup dependency issues.
213
214* Since openvswitch utilities are placed in /usr and /usr can be mounted
215through NFS, openvswitch has to start after it. But if a user uses openvswitch
216for all his networking needs and hence to mount NFS, there will be a deadlock.
217So, if /usr is mounted through NFS and openvswitch is used for all networking,
218the administrator should figure out a way to mount NFS before starting OVS.
219One way to do this is in initramfs.
220
221* Since openvswitch starts after $network, $remote_fs and $syslog, any startup
222script that depends on openvswitch but starts before it, needs to be changed
223to depend on openvswitch-switch too.
224
225* Ideally, an admin should not add openvswitch bridges in the 'auto'
226section of the 'interfaces' file. This is because, when ifupdown starts
227working on bridges listed in 'auto', openvswitch has not yet started.
228
229But, if the admin wants to go down this route and adds openvswitch bridges
230in the 'auto' section, openvswitch-switch will forcefully be started when
231ifupdown kicks in. In a case like this, the admin needs to make sure that /usr
232has already been mounted and that a remote $syslog (if used) is ready to
233receive openvswitch logs.