]> git.proxmox.com Git - ovs.git/blame - INSTALL.Docker.md
netdev-dpdk: Change phy rx burst size.
[ovs.git] / INSTALL.Docker.md
CommitLineData
542cc9bb
TG
1How to Use Open vSwitch with Docker
2====================================
ec8f0f0c
GS
3
4This document describes how to use Open vSwitch with Docker 1.2.0 or
4384556d
GS
5later. This document assumes that you installed Open vSwitch by following
6[INSTALL.md] or by using the distribution packages such as .deb or .rpm.
7Consult www.docker.com for instructions on how to install Docker.
ec8f0f0c
GS
8
9Limitations
10-----------
11Currently there is no native integration of Open vSwitch in Docker, i.e.,
12one cannot use the Docker client to automatically add a container's
13network interface to an Open vSwitch bridge during the creation of the
14container. This document describes addition of new network interfaces to an
15already created container and in turn attaching that interface as a port to an
62dbc5bd
GS
16Open vSwitch bridge. If and when there is a native integration of Open vSwitch
17with Docker, the ovs-docker utility described in this document is expected to
18be retired.
ec8f0f0c
GS
19
20Setup
21-----
22* Create your container, e.g.:
23
542cc9bb 24```
ec8f0f0c
GS
25% docker run -d ubuntu:14.04 /bin/sh -c \
26"while true; do echo hello world; sleep 1; done"
542cc9bb 27```
ec8f0f0c
GS
28
29The above command creates a container with one network interface 'eth0'
30and attaches it to a Linux bridge called 'docker0'. 'eth0' by default
31gets an IP address in the 172.17.0.0/16 space. Docker sets up iptables
32NAT rules to let this interface talk to the outside world. Also since
33it is connected to 'docker0' bridge, it can talk to all other containers
34connected to the same bridge. If you prefer that no network interface be
35created by default, you can start your container with
36the option '--net=none', e,g.:
37
542cc9bb 38```
ec8f0f0c
GS
39% docker run -d --net=none ubuntu:14.04 /bin/sh -c \
40"while true; do echo hello world; sleep 1; done"
542cc9bb 41```
ec8f0f0c
GS
42
43The above commands will return a container id. You will need to pass this
44value to the utility 'ovs-docker' to create network interfaces attached to an
45Open vSwitch bridge as a port. This document will reference this value
46as $CONTAINER_ID in the next steps.
47
48* Add a new network interface to the container and attach it to an Open vSwitch
49 bridge. e.g.:
50
542cc9bb 51`% ovs-docker add-port br-int eth1 $CONTAINER_ID`
ec8f0f0c
GS
52
53The above command will create a network interface 'eth1' inside the container
54and then attaches it to the Open vSwitch bridge 'br-int'. This is done by
55creating a veth pair. One end of the interface becomes 'eth1' inside the
56container and the other end attaches to 'br-int'.
57
58The script also lets one to add an IP address to the interface. e.g.:
59
542cc9bb 60`% ovs-docker add-port br-int eth1 $CONTAINER_ID 192.168.1.1/24`
ec8f0f0c
GS
61
62* A previously added network interface can be deleted. e.g.:
63
542cc9bb 64`% ovs-docker del-port br-int eth1 $CONTAINER_ID`
ec8f0f0c
GS
65
66All the previously added Open vSwitch interfaces inside a container can be
67deleted. e.g.:
68
542cc9bb 69`% ovs-docker del-ports br-int $CONTAINER_ID`
ec8f0f0c
GS
70
71It is important that the same $CONTAINER_ID be passed to both add-port
72and del-port[s] commands.
73
74* More network control.
75
76Once a container interface is added to an Open vSwitch bridge, one can
77set VLANs, create Tunnels, add OpenFlow rules etc for more network control.
7894385a
GS
78Many times, it is important that the underlying network infrastructure is
79plumbed (or programmed) before the application inside the container starts.
80To handle this, one can create a micro-container, attach an Open vSwitch
81interface to that container, set the UUIDS in OVSDB as mentioned in
82[IntegrationGuide.md] and then program the bridge to handle traffic coming out
83of that container. Now, you can start the main container asking it
84to share the network of the micro-container. When your application starts,
85the underlying network infrastructure would be ready. e.g.:
86
87```
88% docker run -d --net=container:$MICROCONTAINER_ID ubuntu:14.04 /bin/sh -c \
89"while true; do echo hello world; sleep 1; done"
90```
91
ec8f0f0c 92Please read the man pages of ovs-vsctl, ovs-ofctl, ovs-vswitchd,
7894385a 93ovsdb-server and ovs-vswitchd.conf.db etc for more details about Open vSwitch.
ec8f0f0c
GS
94
95Docker networking is quite flexible and can be used in multiple ways. For more
96information, please read:
97https://docs.docker.com/articles/networking
98
99Bug Reporting
100-------------
101
102Please report problems to bugs@openvswitch.org.
9feb1017
TG
103
104[INSTALL.md]:INSTALL.md
7894385a 105[IntegrationGuide.md]:IntegrationGuide.md