Support vlan_group workaround implemented in XenServer kernels.
[sliver-openvswitch.git] / utilities / ovs-vlan-test.8.in
1 .TH ovs\-vlan\-test 1 "December 2010" "Open vSwitch" "Open vSwitch Manual"
2 .
3 .SH NAME
4 \fBovs\-vlan\-test\fR \- check Linux drivers for problems with vlan traffic
5 .
6 .SH SYNOPSIS
7 \fBovs\-vlan\-test\fR [\fB\-s\fR | \fB\-\-server\fR] \fIcontrol_ip\fR \fIvlan_ip\fR
8 .so lib/common-syn.man
9 .
10 .SH DESCRIPTION
11 The \fBovs\-vlan\-test\fR program may be used to check for problems sending
12 802.1Q traffic which may occur when running Open vSwitch. These problems can
13 occur when Open vSwitch is used to send 802.1Q traffic through physical
14 interfaces running certain drivers of certain Linux kernel versions. To run a
15 test, configure Open vSwitch to tag traffic originating from \fIvlan_ip\fR and
16 forward it out the target interface. Then run the \fBovs\-vlan\-test\fR in
17 client mode connecting to an \fBovs\-vlan\-test\fR server.
18 \fBovs\-vlan\-test\fR will display "OK" if it did not detect problems.
19 .PP
20 Some examples of the types of problems that may be encountered are:
21 .so utilities/ovs-vlan-bugs.man
22 .
23 .SS "Client Mode"
24 An \fBovs\-vlan\-test\fR client may be run on a host to check for VLAN
25 connectivity problems.  The client must be able to establish HTTP connections
26 with an \fBovs\-vlan\-test\fR server located at the specified \fIcontrol_ip\fR
27 address.  UDP traffic sourced at \fIvlan_ip\fR should be tagged and directed out
28 the interface whose connectivity is being tested.
29 .
30 .SS "Server Mode"
31 To conduct tests, an \fBovs\-vlan\-test\fR server must be running on a host
32 known not to have VLAN connectivity problems.  The server must have a
33 \fIcontrol_ip\fR on a non\-VLAN network which clients can establish
34 connectivity with.  It must also have a \fIvlan_ip\fR address on a VLAN network
35 which clients will use to test their VLAN connectivity.  Multiple clients may
36 test against a single \fBovs\-vlan\-test\fR server concurrently.
37 .
38 .SH OPTIONS
39 .
40 .TP
41 \fB\-s\fR, \fB\-\-server\fR
42 Run in server mode.
43 .
44 .so lib/common.man
45 .SH EXAMPLES
46 Display the Linux kernel version and driver of \fBeth1\fR.
47 .IP
48 .B uname \-r
49 .IP
50 .B ethtool \-i eth1
51 .
52 .PP
53 Set up a bridge which forwards traffic originating from \fB1.2.3.4\fR out
54 \fBeth1\fR with VLAN tag 10.
55 .IP
56 .B ovs\-vsctl \-\- add\-br vlan\-br \(rs
57 .IP
58 .B \-\- add\-port vlan\-br eth1 \(rs
59 .IP
60 .B \-\- add\-port vlan\-br vlan\-br\-tag tag=10 \(rs
61 .IP
62 .B \-\- set Interface vlan\-br\-tag type=internal
63 .IP
64 .B ifconfig vlan\-br\-tag up 1.2.3.4
65 .
66 .PP
67 Run an \fBovs\-vlan\-test\fR server listening for client control traffic on
68 172.16.0.142 port 8080 and VLAN traffic on the default port of 1.2.3.3.
69 .IP
70 .B ovs\-vlan\-test \-s 172.16.0.142:8080 1.2.3.3
71 .
72 .PP
73 Run an \fBovs\-vlan\-test\fR client with a control server located at
74 172.16.0.142 port 8080 and a local VLAN ip of 1.2.3.4.
75 .IP
76 .B ovs\-vlan\-test 172.16.0.142:8080 1.2.3.4
77 .
78 .TP
79
80 .SH SEE ALSO
81 .
82 .BR ovs\-vswitchd (8),
83 .BR ovs\-ofctl (8),
84 .BR ovs\-vsctl (8),
85 .BR ethtool (8),
86 .BR uname (1)