]> git.proxmox.com Git - ovs.git/blame - INSTALL.userspace
xenserver: Include ovs-bugtool in xenserver rpm.
[ovs.git] / INSTALL.userspace
CommitLineData
d377243b
BP
1 Using Open vSwitch without kernel support
2 =========================================
3
4Open vSwitch can operate, at a cost in performance, entirely in
5userspace, without assistance from a kernel module. This file
6explains how to install Open vSwitch in such a mode.
7
8The userspace-only mode of Open vSwitch is considered experimental.
9It has not been thoroughly tested.
10
11This version of Open vSwitch should be built manually with "configure"
12and "make". Debian packaging for Open vSwitch is also included, but
13it has not been recently tested, and so Debian packages are not a
14recommended way to use this version of Open vSwitch.
15
16Building and Installing
17-----------------------
18
19The requirements and procedure for building, installing, and
f6eb6b20 20configuring Open vSwitch are the same as those given in INSTALL.
d377243b
BP
21You may omit configuring, building, and installing the kernel module,
22and the related requirements.
23
24On Linux, the userspace switch additionally requires the kernel
25TUN/TAP driver to be available, either built into the kernel or loaded
26as a module. If you are not sure, check for a directory named
27/sys/class/misc/tun. If it does not exist, then attempt to load the
28module with "modprobe tun".
29
30The tun device must also exist as /dev/net/tun. If it does not exist,
31then create /dev/net (if necessary) with "mkdir /dev/net", then create
32/dev/net/tun with "mknod /dev/net/tun c 10 200".
33
f6eb6b20
GL
34On FreeBSD, the userspace switch additionally requires the kernel
35tap(4) driver to be available, either built into the kernel or loaded
36as a module.
37
e3e9370b
BP
38Using the Userspace Datapath with ovs-vswitchd
39----------------------------------------------
d377243b 40
e5334dad
JG
41To use ovs-vswitchd in userspace mode, create a bridge with datapath_type
42"netdev" in the configuration database. For example:
d377243b 43
e5334dad
JG
44 ovs-vsctl add-br br0
45 ovs-vsctl set bridge br0 datapath_type=netdev
46 ovs-vsctl add-port br0 eth0
47 ovs-vsctl add-port br0 eth1
48 ovs-vsctl add-port br0 eth2
d377243b
BP
49
50ovs-vswitchd will create a TAP device as the bridge's local interface,
e5334dad
JG
51named the same as the bridge, as well as for each configured internal
52interface.
d377243b 53
f4ef9534
BP
54Firewall Rules
55--------------
56
57On Linux, when a physical interface is in use by the userspace
58datapath, packets received on the interface still also pass into the
59kernel TCP/IP stack. This can cause surprising and incorrect
60behavior. You can use "iptables" to avoid this behavior, by using it
61to drop received packets. For example, to drop packets received on
62eth0:
63
64 iptables -A INPUT -i eth0 -j DROP
65 iptables -A FORWARD -i eth0 -j DROP
66
d377243b
BP
67Bug Reporting
68-------------
69
70Please report problems to bugs@openvswitch.org.