~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to INSTALL.userspace

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
then create /dev/net (if necessary) with "mkdir /dev/net", then create
32
32
/dev/net/tun with "mknod /dev/net/tun c 10 200".
33
33
 
34
 
On FreeBSD, the userspace switch additionally requires the kernel
35
 
tap(4) driver to be available, either built into the kernel or loaded
36
 
as a module.
 
34
On FreeBSD and NetBSD, the userspace switch additionally requires the
 
35
kernel tap(4) driver to be available, either built into the kernel or
 
36
loaded as a module.
37
37
 
38
38
Using the Userspace Datapath with ovs-vswitchd
39
39
----------------------------------------------
51
51
named the same as the bridge, as well as for each configured internal
52
52
interface.
53
53
 
 
54
Currently, on FreeBSD, the functionality required for in-band control
 
55
support is not implemented.  To avoid related errors, you can disable
 
56
the in-band support with the following command.
 
57
 
 
58
    ovs-vsctl set bridge br0 other_config:disable-in-band=true
 
59
 
54
60
Firewall Rules
55
61
--------------
56
62
 
64
70
    iptables -A INPUT -i eth0 -j DROP
65
71
    iptables -A FORWARD -i eth0 -j DROP
66
72
 
 
73
Other settings
 
74
--------------
 
75
 
 
76
On NetBSD, depending on your network topology and applications, the
 
77
following configuration might help.  See sysctl(7).
 
78
 
 
79
        sysctl net.inet.ip.checkinterface=1
 
80
 
67
81
Bug Reporting
68
82
-------------
69
83