dpif-netlink: add GENEVE creation support
[cascardo/ovs.git] / README.md
1 Open vSwitch
2 ============
3
4 Build Status:
5 -------------
6
7 [![Build Status](https://travis-ci.org/openvswitch/ovs.png)](https://travis-ci.org/openvswitch/ovs)
8
9 What is Open vSwitch?
10 ---------------------
11
12 Open vSwitch is a multilayer software switch licensed under the open
13 source Apache 2 license.  Our goal is to implement a production
14 quality switch platform that supports standard management interfaces
15 and opens the forwarding functions to programmatic extension and
16 control.
17
18 Open vSwitch is well suited to function as a virtual switch in VM
19 environments.  In addition to exposing standard control and visibility
20 interfaces to the virtual networking layer, it was designed to support
21 distribution across multiple physical servers.  Open vSwitch supports
22 multiple Linux-based virtualization technologies including
23 Xen/XenServer, KVM, and VirtualBox.
24
25 The bulk of the code is written in platform-independent C and is
26 easily ported to other environments.  The current release of Open
27 vSwitch supports the following features:
28
29 * Standard 802.1Q VLAN model with trunk and access ports
30 * NIC bonding with or without LACP on upstream switch
31 * NetFlow, sFlow(R), and mirroring for increased visibility
32 * QoS (Quality of Service) configuration, plus policing
33 * Geneve, GRE, GRE over IPSEC, VXLAN, and LISP tunneling
34 * 802.1ag connectivity fault management
35 * OpenFlow 1.0 plus numerous extensions
36 * Transactional configuration database with C and Python bindings
37 * High-performance forwarding using a Linux kernel module
38
39 The included Linux kernel module supports Linux 3.10 and up.
40
41 Open vSwitch can also operate, at a cost in performance, entirely in
42 userspace, without assistance from a kernel module.  This userspace
43 implementation should be easier to port than the kernel-based switch.
44 It is considered experimental.
45
46 What's here?
47 ------------
48
49 The main components of this distribution are:
50
51 * ovs-vswitchd, a daemon that implements the switch, along with
52   a companion Linux kernel module for flow-based switching.
53 * ovsdb-server, a lightweight database server that ovs-vswitchd
54   queries to obtain its configuration.
55 * ovs-dpctl, a tool for configuring the switch kernel module.
56 * Scripts and specs for building RPMs for Citrix XenServer and Red
57   Hat Enterprise Linux.  The XenServer RPMs allow Open vSwitch to
58   be installed on a Citrix XenServer host as a drop-in replacement
59   for its switch, with additional functionality.
60 * ovs-vsctl, a utility for querying and updating the configuration
61   of ovs-vswitchd.
62 * ovs-appctl, a utility that sends commands to running Open
63       vSwitch daemons.
64
65 Open vSwitch also provides some tools:
66
67 * ovs-ofctl, a utility for querying and controlling OpenFlow
68   switches and controllers.
69 * ovs-pki, a utility for creating and managing the public-key
70   infrastructure for OpenFlow switches.
71 * ovs-testcontroller, a simple OpenFlow controller that may be useful
72   for testing (though not for production).
73 * A patch to tcpdump that enables it to parse OpenFlow messages.
74
75 What other documentation is available?
76 --------------------------------------
77
78 To install Open vSwitch on a regular Linux or FreeBSD host, please
79 read [INSTALL.md]. For specifics around installation on a specific
80 platform, please see one of these files:
81
82 - [INSTALL.Debian.md]
83 - [INSTALL.Fedora.md]
84 - [INSTALL.RHEL.md]
85 - [INSTALL.XenServer.md]
86
87 To use Open vSwitch...
88
89 - ...with Docker on Linux, read [INSTALL.Docker.md]
90
91 - ...with KVM on Linux, read [INSTALL.md], read [INSTALL.KVM.md]
92
93 - ...with Libvirt, read [INSTALL.Libvirt.md].
94
95 - ...without using a kernel module, read [INSTALL.userspace.md].
96
97 - ...with SELinux, read [INSTALL.SELinux.md].
98
99 For answers to common questions, read [FAQ.md].
100
101 To learn how to set up SSL support for Open vSwitch, read [INSTALL.SSL.md].
102
103 To learn about some advanced features of the Open vSwitch software
104 switch, read the [tutorial/Tutorial.md].
105
106 Each Open vSwitch userspace program is accompanied by a manpage.  Many
107 of the manpages are customized to your configuration as part of the
108 build process, so we recommend building Open vSwitch before reading
109 the manpages.
110
111 Contact
112 -------
113
114 bugs@openvswitch.org
115
116 [INSTALL.md]:INSTALL.md
117 [INSTALL.Debian.md]:INSTALL.Debian.md
118 [INSTALL.Docker.md]:INSTALL.Docker.md
119 [INSTALL.Fedora.md]:INSTALL.Fedora.md
120 [INSTALL.KVM.md]:INSTALL.KVM.md
121 [INSTALL.Libvirt.md]:INSTALL.Libvirt.md
122 [INSTALL.RHEL.md]:INSTALL.RHEL.md
123 [INSTALL.SSL.md]:INSTALL.SSL.md
124 [INSTALL.userspace.md]:INSTALL.userspace.md
125 [INSTALL.XenServer.md]:INSTALL.XenServer.md
126 [FAQ.md]:FAQ.md
127 [tutorial/Tutorial.md]:tutorial/Tutorial.md