datapath: Add support for VXLAN tunnels to Open vSwitch
[sliver-openvswitch.git] / vswitchd / vswitch.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <database title="Open vSwitch Configuration Database">
3   <p>
4     A database with this schema holds the configuration for one Open
5     vSwitch daemon.  The top-level configuration for the daemon is the
6     <ref table="Open_vSwitch"/> table, which must have exactly one
7     record.  Records in other tables are significant only when they
8     can be reached directly or indirectly from the <ref
9     table="Open_vSwitch"/> table.  Records that are not reachable from
10     the <ref table="Open_vSwitch"/> table are automatically deleted
11     from the database, except for records in a few distinguished
12     ``root set'' tables.
13   </p>
14
15   <h2>Common Columns</h2>
16
17   <p>
18     Most tables contain two special columns, named <code>other_config</code>
19     and <code>external_ids</code>.  These columns have the same form and
20     purpose each place that they appear, so we describe them here to save space
21     later.
22   </p>
23
24   <dl>
25     <dt><code>other_config</code>: map of string-string pairs</dt>
26     <dd>
27       <p>
28         Key-value pairs for configuring rarely used features.  Supported keys,
29         along with the forms taken by their values, are documented individually
30         for each table.
31       </p>
32       <p>
33         A few tables do not have <code>other_config</code> columns because no
34         key-value pairs have yet been defined for them.
35       </p>
36     </dd>
37
38     <dt><code>external_ids</code>: map of string-string pairs</dt>
39     <dd>
40       Key-value pairs for use by external frameworks that integrate with Open
41       vSwitch, rather than by Open vSwitch itself.  System integrators should
42       either use the Open vSwitch development mailing list to coordinate on
43       common key-value definitions, or choose key names that are likely to be
44       unique.  In some cases, where key-value pairs have been defined that are
45       likely to be widely useful, they are documented individually for each
46       table.
47     </dd>
48   </dl>
49
50   <table name="Open_vSwitch" title="Open vSwitch configuration.">
51     Configuration for an Open vSwitch daemon.  There must be exactly
52     one record in the <ref table="Open_vSwitch"/> table.
53
54     <group title="Configuration">
55       <column name="bridges">
56         Set of bridges managed by the daemon.
57       </column>
58
59       <column name="ssl">
60         SSL used globally by the daemon.
61       </column>
62
63       <column name="external_ids" key="system-id">
64         A unique identifier for the Open vSwitch's physical host.
65         The form of the identifier depends on the type of the host.
66         On a Citrix XenServer, this will likely be the same as
67         <ref column="external_ids" key="xs-system-uuid"/>.
68       </column>
69
70       <column name="external_ids" key="xs-system-uuid">
71         The Citrix XenServer universally unique identifier for the physical
72         host as displayed by <code>xe host-list</code>.
73       </column>
74     </group>
75
76     <group title="Status">
77       <column name="next_cfg">
78         Sequence number for client to increment.  When a client modifies
79         any part of the database configuration and wishes to wait for
80         Open vSwitch to finish applying the changes, it may increment
81         this sequence number.
82       </column>
83
84       <column name="cur_cfg">
85         Sequence number that Open vSwitch sets to the current value of
86         <ref column="next_cfg"/> after it finishes applying a set of
87         configuration changes.
88       </column>
89
90       <group title="Statistics">
91         <p>
92           The <code>statistics</code> column contains key-value pairs that
93           report statistics about a system running an Open vSwitch.  These are
94           updated periodically (currently, every 5 seconds).  Key-value pairs
95           that cannot be determined or that do not apply to a platform are
96           omitted.
97         </p>
98
99         <column name="other_config" key="enable-statistics"
100                 type='{"type": "boolean"}'>
101           Statistics are disabled by default to avoid overhead in the common
102           case when statistics gathering is not useful.  Set this value to
103           <code>true</code> to enable populating the <ref column="statistics"/>
104           column or to <code>false</code> to explicitly disable it.
105         </column>
106
107         <column name="statistics" key="cpu"
108                 type='{"type": "integer", "minInteger": 1}'>
109           <p>
110             Number of CPU processors, threads, or cores currently online and
111             available to the operating system on which Open vSwitch is running,
112             as an integer.  This may be less than the number installed, if some
113             are not online or if they are not available to the operating
114             system.
115           </p>
116           <p>
117             Open vSwitch userspace processes are not multithreaded, but the
118             Linux kernel-based datapath is.
119           </p>
120         </column>
121
122         <column name="statistics" key="load_average">
123           A comma-separated list of three floating-point numbers,
124           representing the system load average over the last 1, 5, and 15
125           minutes, respectively.
126         </column>
127
128         <column name="statistics" key="memory">
129           <p>
130             A comma-separated list of integers, each of which represents a
131             quantity of memory in kilobytes that describes the operating
132             system on which Open vSwitch is running.  In respective order,
133             these values are:
134           </p>
135
136           <ol>
137             <li>Total amount of RAM allocated to the OS.</li>
138             <li>RAM allocated to the OS that is in use.</li>
139             <li>RAM that can be flushed out to disk or otherwise discarded
140             if that space is needed for another purpose.  This number is
141             necessarily less than or equal to the previous value.</li>
142             <li>Total disk space allocated for swap.</li>
143             <li>Swap space currently in use.</li>
144           </ol>
145
146           <p>
147             On Linux, all five values can be determined and are included.  On
148             other operating systems, only the first two values can be
149             determined, so the list will only have two values.
150           </p>
151         </column>
152
153         <column name="statistics" key="process_NAME">
154           <p>
155             One such key-value pair, with <code>NAME</code> replaced by
156             a process name, will exist for each running Open vSwitch
157             daemon process, with <var>name</var> replaced by the
158             daemon's name (e.g. <code>process_ovs-vswitchd</code>).  The
159             value is a comma-separated list of integers.  The integers
160             represent the following, with memory measured in kilobytes
161             and durations in milliseconds:
162           </p>
163
164           <ol>
165             <li>The process's virtual memory size.</li>
166             <li>The process's resident set size.</li>
167             <li>The amount of user and system CPU time consumed by the
168             process.</li>
169             <li>The number of times that the process has crashed and been
170             automatically restarted by the monitor.</li>
171             <li>The duration since the process was started.</li>
172             <li>The duration for which the process has been running.</li>
173           </ol>
174
175           <p>
176             The interpretation of some of these values depends on whether the
177             process was started with the <option>--monitor</option>.  If it
178             was not, then the crash count will always be 0 and the two
179             durations will always be the same.  If <option>--monitor</option>
180             was given, then the crash count may be positive; if it is, the
181             latter duration is the amount of time since the most recent crash
182             and restart.
183           </p>
184
185           <p>
186             There will be one key-value pair for each file in Open vSwitch's
187             ``run directory'' (usually <code>/var/run/openvswitch</code>)
188             whose name ends in <code>.pid</code>, whose contents are a
189             process ID, and which is locked by a running process.  The
190             <var>name</var> is taken from the pidfile's name.
191           </p>
192
193           <p>
194             Currently Open vSwitch is only able to obtain all of the above
195             detail on Linux systems.  On other systems, the same key-value
196             pairs will be present but the values will always be the empty
197             string.
198           </p>
199         </column>
200
201         <column name="statistics" key="file_systems">
202           <p>
203             A space-separated list of information on local, writable file
204             systems.  Each item in the list describes one file system and
205             consists in turn of a comma-separated list of the following:
206           </p>
207
208           <ol>
209             <li>Mount point, e.g. <code>/</code> or <code>/var/log</code>.
210             Any spaces or commas in the mount point are replaced by
211             underscores.</li>
212             <li>Total size, in kilobytes, as an integer.</li>
213             <li>Amount of storage in use, in kilobytes, as an integer.</li>
214           </ol>
215
216           <p>
217             This key-value pair is omitted if there are no local, writable
218             file systems or if Open vSwitch cannot obtain the needed
219             information.
220           </p>
221         </column>
222       </group>
223     </group>
224
225     <group title="Version Reporting">
226       <p>
227         These columns report the types and versions of the hardware and
228         software running Open vSwitch.  We recommend in general that software
229         should test whether specific features are supported instead of relying
230         on version number checks.  These values are primarily intended for
231         reporting to human administrators.
232       </p>
233
234       <column name="ovs_version">
235         The Open vSwitch version number, e.g. <code>1.1.0</code>.
236       </column>
237
238       <column name="db_version">
239         <p>
240           The database schema version number in the form
241           <code><var>major</var>.<var>minor</var>.<var>tweak</var></code>,
242           e.g. <code>1.2.3</code>.  Whenever the database schema is changed in
243           a non-backward compatible way (e.g. deleting a column or a table),
244           <var>major</var> is incremented.  When the database schema is changed
245           in a backward compatible way (e.g. adding a new column),
246           <var>minor</var> is incremented.  When the database schema is changed
247           cosmetically (e.g. reindenting its syntax), <var>tweak</var> is
248           incremented.
249         </p>
250
251         <p>
252           The schema version is part of the database schema, so it can also be
253           retrieved by fetching the schema using the Open vSwitch database
254           protocol.
255         </p>
256       </column>
257
258       <column name="system_type">
259         <p>
260           An identifier for the type of system on top of which Open vSwitch
261           runs, e.g. <code>XenServer</code> or <code>KVM</code>.
262         </p>
263         <p>
264           System integrators are responsible for choosing and setting an
265           appropriate value for this column.
266         </p>
267       </column>
268
269       <column name="system_version">
270         <p>
271           The version of the system identified by <ref column="system_type"/>,
272           e.g. <code>5.6.100-39265p</code> on XenServer 5.6.100 build 39265.
273         </p>
274         <p>
275           System integrators are responsible for choosing and setting an
276           appropriate value for this column.
277         </p>
278       </column>
279
280     </group>
281
282     <group title="Database Configuration">
283       <p>
284         These columns primarily configure the Open vSwitch database
285         (<code>ovsdb-server</code>), not the Open vSwitch switch
286         (<code>ovs-vswitchd</code>).  The OVSDB database also uses the <ref
287         column="ssl"/> settings.
288       </p>
289
290       <p>
291         The Open vSwitch switch does read the database configuration to
292         determine remote IP addresses to which in-band control should apply.
293       </p>
294
295       <column name="manager_options">
296         Database clients to which the Open vSwitch database server should
297         connect or to which it should listen, along with options for how these
298         connection should be configured.  See the <ref table="Manager"/> table
299         for more information.
300       </column>
301     </group>
302
303     <group title="Common Columns">
304       The overall purpose of these columns is described under <code>Common
305       Columns</code> at the beginning of this document.
306
307       <column name="other_config"/>
308       <column name="external_ids"/>
309     </group>
310   </table>
311
312   <table name="Bridge">
313     <p>
314       Configuration for a bridge within an
315       <ref table="Open_vSwitch"/>.
316     </p>
317     <p>
318       A <ref table="Bridge"/> record represents an Ethernet switch with one or
319       more ``ports,'' which are the <ref table="Port"/> records pointed to by
320       the <ref table="Bridge"/>'s <ref column="ports"/> column.
321     </p>
322
323     <group title="Core Features">
324       <column name="name">
325         Bridge identifier.  Should be alphanumeric and no more than about 8
326         bytes long.  Must be unique among the names of ports, interfaces, and
327         bridges on a host.
328       </column>
329
330       <column name="ports">
331         Ports included in the bridge.
332       </column>
333
334       <column name="mirrors">
335         Port mirroring configuration.
336       </column>
337
338       <column name="netflow">
339         NetFlow configuration.
340       </column>
341
342       <column name="sflow">
343         sFlow configuration.
344       </column>
345
346       <column name="flood_vlans">
347         <p>
348           VLAN IDs of VLANs on which MAC address learning should be disabled,
349           so that packets are flooded instead of being sent to specific ports
350           that are believed to contain packets' destination MACs.  This should
351           ordinarily be used to disable MAC learning on VLANs used for
352           mirroring (RSPAN VLANs).  It may also be useful for debugging.
353         </p>
354         <p>
355           SLB bonding (see the <ref table="Port" column="bond_mode"/> column in
356           the <ref table="Port"/> table) is incompatible with
357           <code>flood_vlans</code>.  Consider using another bonding mode or
358           a different type of mirror instead.
359         </p>
360       </column>
361     </group>
362
363     <group title="OpenFlow Configuration">
364       <column name="controller">
365         <p>
366           OpenFlow controller set.  If unset, then no OpenFlow controllers
367           will be used.
368         </p>
369
370         <p>
371           If there are primary controllers, removing all of them clears the
372           flow table.  If there are no primary controllers, adding one also
373           clears the flow table.  Other changes to the set of controllers, such
374           as adding or removing a service controller, adding another primary
375           controller to supplement an existing primary controller, or removing
376           only one of two primary controllers, have no effect on the flow
377           table.
378         </p>
379       </column>
380
381       <column name="flow_tables">
382         Configuration for OpenFlow tables.  Each pair maps from an OpenFlow
383         table ID to configuration for that table.
384       </column>
385
386       <column name="fail_mode">
387         <p>When a controller is configured, it is, ordinarily, responsible
388         for setting up all flows on the switch.  Thus, if the connection to
389         the controller fails, no new network connections can be set up.
390         If the connection to the controller stays down long enough,
391         no packets can pass through the switch at all.  This setting
392         determines the switch's response to such a situation.  It may be set
393         to one of the following:
394         <dl>
395           <dt><code>standalone</code></dt>
396           <dd>If no message is received from the controller for three
397           times the inactivity probe interval
398           (see <ref column="inactivity_probe"/>), then Open vSwitch
399           will take over responsibility for setting up flows.  In
400           this mode, Open vSwitch causes the bridge to act like an
401           ordinary MAC-learning switch.  Open vSwitch will continue
402           to retry connecting to the controller in the background
403           and, when the connection succeeds, it will discontinue its
404           standalone behavior.</dd>
405           <dt><code>secure</code></dt>
406           <dd>Open vSwitch will not set up flows on its own when the
407           controller connection fails or when no controllers are
408           defined.  The bridge will continue to retry connecting to
409           any defined controllers forever.</dd>
410         </dl>
411         </p>
412         <p>
413           The default is <code>standalone</code> if the value is unset, but
414           future versions of Open vSwitch may change the default.
415         </p>
416         <p>
417           The <code>standalone</code> mode can create forwarding loops on a
418           bridge that has more than one uplink port unless STP is enabled.  To
419           avoid loops on such a bridge, configure <code>secure</code> mode or
420           enable STP (see <ref column="stp_enable"/>).
421         </p>
422         <p>When more than one controller is configured,
423         <ref column="fail_mode"/> is considered only when none of the
424         configured controllers can be contacted.</p>
425         <p>
426           Changing <ref column="fail_mode"/> when no primary controllers are
427           configured clears the flow table.
428         </p>
429       </column>
430
431       <column name="datapath_id">
432         Reports the OpenFlow datapath ID in use.  Exactly 16 hex digits.
433         (Setting this column has no useful effect.  Set <ref
434         column="other-config" key="datapath-id"/> instead.)
435       </column>
436
437       <column name="other_config" key="datapath-id">
438         Exactly 16 hex digits to set the OpenFlow datapath ID to a specific
439         value.  May not be all-zero.
440       </column>
441
442       <column name="other_config" key="disable-in-band"
443               type='{"type": "boolean"}'>
444         If set to <code>true</code>, disable in-band control on the bridge
445         regardless of controller and manager settings.
446       </column>
447
448       <column name="other_config" key="in-band-queue"
449               type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
450         A queue ID as a nonnegative integer.  This sets the OpenFlow queue ID
451         that will be used by flows set up by in-band control on this bridge.
452         If unset, or if the port used by an in-band control flow does not have
453         QoS configured, or if the port does not have a queue with the specified
454         ID, the default queue is used instead.
455       </column>
456
457       <column name="protocols">
458         List of OpenFlow protocols that may be used when negotiating a
459         connection with a controller.  A default value of
460         <code>OpenFlow10</code> will be used if this column is empty.
461       </column>
462     </group>
463
464     <group title="Spanning Tree Configuration">
465       The IEEE 802.1D Spanning Tree Protocol (STP) is a network protocol
466       that ensures loop-free topologies.  It allows redundant links to
467       be included in the network to provide automatic backup paths if
468       the active links fails.
469
470       <column name="stp_enable">
471         Enable spanning tree on the bridge.  By default, STP is disabled
472         on bridges.  Bond, internal, and mirror ports are not supported
473         and will not participate in the spanning tree.
474       </column>
475
476       <column name="other_config" key="stp-system-id">
477         The bridge's STP identifier (the lower 48 bits of the bridge-id)
478         in the form
479         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
480         By default, the identifier is the MAC address of the bridge.
481       </column>
482
483       <column name="other_config" key="stp-priority"
484               type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
485         The bridge's relative priority value for determining the root
486         bridge (the upper 16 bits of the bridge-id).  A bridge with the
487         lowest bridge-id is elected the root.  By default, the priority
488         is 0x8000.
489       </column>
490
491       <column name="other_config" key="stp-hello-time"
492               type='{"type": "integer", "minInteger": 1, "maxInteger": 10}'>
493         The interval between transmissions of hello messages by
494         designated ports, in seconds.  By default the hello interval is
495         2 seconds.
496       </column>
497
498       <column name="other_config" key="stp-max-age"
499               type='{"type": "integer", "minInteger": 6, "maxInteger": 40}'>
500         The maximum age of the information transmitted by the bridge
501         when it is the root bridge, in seconds.  By default, the maximum
502         age is 20 seconds.
503       </column>
504
505       <column name="other_config" key="stp-forward-delay"
506               type='{"type": "integer", "minInteger": 4, "maxInteger": 30}'>
507         The delay to wait between transitioning root and designated
508         ports to <code>forwarding</code>, in seconds.  By default, the
509         forwarding delay is 15 seconds.
510       </column>
511     </group>
512
513     <group title="Other Features">
514       <column name="datapath_type">
515         Name of datapath provider.  The kernel datapath has
516         type <code>system</code>.  The userspace datapath has
517         type <code>netdev</code>.
518       </column>
519
520       <column name="external_ids" key="bridge-id">
521         A unique identifier of the bridge.  On Citrix XenServer this will
522         commonly be the same as
523         <ref column="external_ids" key="xs-network-uuids"/>.
524       </column>
525
526       <column name="external_ids" key="xs-network-uuids">
527         Semicolon-delimited set of universally unique identifier(s) for the
528         network with which this bridge is associated on a Citrix XenServer
529         host.  The network identifiers are RFC 4122 UUIDs as displayed by,
530         e.g., <code>xe network-list</code>.
531       </column>
532
533       <column name="other_config" key="hwaddr">
534         An Ethernet address in the form
535         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
536         to set the hardware address of the local port and influence the
537         datapath ID.
538       </column>
539
540       <column name="other_config" key="flow-eviction-threshold"
541               type='{"type": "integer", "minInteger": 0}'>
542         <p>
543           A number of flows as a nonnegative integer.  This sets number of
544           flows at which eviction from the kernel flow table will be triggered.
545           If there are a large number of flows then increasing this value to
546           around the number of flows present can result in reduced CPU usage
547           and packet loss.
548         </p>
549         <p>
550           The default is 1000.  Values below 100 will be rounded up to 100.
551         </p>
552       </column>
553
554       <column name="other_config" key="forward-bpdu"
555               type='{"type": "boolean"}'>
556         Option to allow forwarding of BPDU frames when NORMAL action is
557         invoked.  Frames with reserved Ethernet addresses (e.g. STP
558         BPDU) will be forwarded when this option is enabled and the
559         switch is not providing that functionality.  If STP is enabled
560         on the port, STP BPDUs will never be forwarded.  If the Open
561         vSwitch bridge is used to connect different Ethernet networks,
562         and if Open vSwitch node does not run STP, then this option
563         should be enabled.  Default is disabled, set to
564         <code>true</code> to enable.
565
566         The following destination MAC addresss will not be forwarded when this
567         option is enabled.
568         <dl>
569           <dt><code>01:80:c2:00:00:00</code></dt>
570           <dd>IEEE 802.1D Spanning Tree Protocol (STP).</dd>
571
572           <dt><code>01:80:c2:00:00:01</code></dt>
573           <dd>IEEE Pause frame.</dd>
574
575           <dt><code>01:80:c2:00:00:0<var>x</var></code></dt>
576           <dd>Other reserved protocols.</dd>
577
578           <dt><code>00:e0:2b:00:00:00</code></dt>
579           <dd>Extreme Discovery Protocol (EDP).</dd>
580
581           <dt>
582             <code>00:e0:2b:00:00:04</code> and <code>00:e0:2b:00:00:06</code>
583           </dt>
584           <dd>Ethernet Automatic Protection Switching (EAPS).</dd>
585
586           <dt><code>01:00:0c:cc:cc:cc</code></dt>
587           <dd>
588             Cisco Discovery Protocol (CDP), VLAN Trunking Protocol (VTP),
589             Dynamic Trunking Protocol (DTP), Port Aggregation Protocol (PAgP),
590             and others.
591           </dd>
592
593           <dt><code>01:00:0c:cc:cc:cd</code></dt>
594           <dd>Cisco Shared Spanning Tree Protocol PVSTP+.</dd>
595
596           <dt><code>01:00:0c:cd:cd:cd</code></dt>
597           <dd>Cisco STP Uplink Fast.</dd>
598
599           <dt><code>01:00:0c:00:00:00</code></dt>
600           <dd>Cisco Inter Switch Link.</dd>
601
602           <dt><code>01:00:0c:cc:cc:c<var>x</var></code></dt>
603           <dd>Cisco CFM.</dd>
604         </dl>
605       </column>
606
607       <column name="other_config" key="mac-aging-time"
608               type='{"type": "integer", "minInteger": 1}'>
609         <p>
610           The maximum number of seconds to retain a MAC learning entry for
611           which no packets have been seen.  The default is currently 300
612           seconds (5 minutes).  The value, if specified, is forced into a
613           reasonable range, currently 15 to 3600 seconds.
614         </p>
615
616         <p>
617           A short MAC aging time allows a network to more quickly detect that a
618           host is no longer connected to a switch port.  However, it also makes
619           it more likely that packets will be flooded unnecessarily, when they
620           are addressed to a connected host that rarely transmits packets.  To
621           reduce the incidence of unnecessary flooding, use a MAC aging time
622           longer than the maximum interval at which a host will ordinarily
623           transmit packets.
624         </p>
625       </column>
626     </group>
627
628     <group title="Bridge Status">
629       <p>
630         Status information about bridges.
631       </p>
632       <column name="status">
633         Key-value pairs that report bridge status.
634       </column>
635       <column name="status" key="stp_bridge_id">
636         <p>
637           The bridge-id (in hex) used in spanning tree advertisements.
638           Configuring the bridge-id is described in the
639           <code>stp-system-id</code> and <code>stp-priority</code> keys
640           of the <code>other_config</code> section earlier.
641         </p>
642       </column>
643       <column name="status" key="stp_designated_root">
644         <p>
645           The designated root (in hex) for this spanning tree.
646         </p>
647       </column>
648       <column name="status" key="stp_root_path_cost">
649         <p>
650           The path cost of reaching the designated bridge.  A lower
651           number is better.
652         </p>
653       </column>
654     </group>
655
656     <group title="Common Columns">
657       The overall purpose of these columns is described under <code>Common
658       Columns</code> at the beginning of this document.
659
660       <column name="other_config"/>
661       <column name="external_ids"/>
662     </group>
663   </table>
664
665   <table name="Port" table="Port or bond configuration.">
666     <p>A port within a <ref table="Bridge"/>.</p>
667     <p>Most commonly, a port has exactly one ``interface,'' pointed to by its
668     <ref column="interfaces"/> column.  Such a port logically
669     corresponds to a port on a physical Ethernet switch.  A port
670     with more than one interface is a ``bonded port'' (see
671     <ref group="Bonding Configuration"/>).</p>
672     <p>Some properties that one might think as belonging to a port are actually
673     part of the port's <ref table="Interface"/> members.</p>
674
675     <column name="name">
676       Port name.  Should be alphanumeric and no more than about 8
677       bytes long.  May be the same as the interface name, for
678       non-bonded ports.  Must otherwise be unique among the names of
679       ports, interfaces, and bridges on a host.
680     </column>
681
682     <column name="interfaces">
683       The port's interfaces.  If there is more than one, this is a
684       bonded Port.
685     </column>
686
687     <group title="VLAN Configuration">
688       <p>Bridge ports support the following types of VLAN configuration:</p>
689       <dl>
690         <dt>trunk</dt>
691         <dd>
692           <p>
693             A trunk port carries packets on one or more specified VLANs
694             specified in the <ref column="trunks"/> column (often, on every
695             VLAN).  A packet that ingresses on a trunk port is in the VLAN
696             specified in its 802.1Q header, or VLAN 0 if the packet has no
697             802.1Q header.  A packet that egresses through a trunk port will
698             have an 802.1Q header if it has a nonzero VLAN ID.
699           </p>
700
701           <p>
702             Any packet that ingresses on a trunk port tagged with a VLAN that
703             the port does not trunk is dropped.
704           </p>
705         </dd>
706
707         <dt>access</dt>
708         <dd>
709           <p>
710             An access port carries packets on exactly one VLAN specified in the
711             <ref column="tag"/> column.  Packets egressing on an access port
712             have no 802.1Q header.
713           </p>
714
715           <p>
716             Any packet with an 802.1Q header with a nonzero VLAN ID that
717             ingresses on an access port is dropped, regardless of whether the
718             VLAN ID in the header is the access port's VLAN ID.
719           </p>
720         </dd>
721
722         <dt>native-tagged</dt>
723         <dd>
724           A native-tagged port resembles a trunk port, with the exception that
725           a packet without an 802.1Q header that ingresses on a native-tagged
726           port is in the ``native VLAN'' (specified in the <ref column="tag"/>
727           column).
728         </dd>
729
730         <dt>native-untagged</dt>
731         <dd>
732           A native-untagged port resembles a native-tagged port, with the
733           exception that a packet that egresses on a native-untagged port in
734           the native VLAN will not have an 802.1Q header.
735         </dd>
736       </dl>
737       <p>
738         A packet will only egress through bridge ports that carry the VLAN of
739         the packet, as described by the rules above.
740       </p>
741
742       <column name="vlan_mode">
743         <p>
744           The VLAN mode of the port, as described above.  When this column is
745           empty, a default mode is selected as follows:
746         </p>
747         <ul>
748           <li>
749             If <ref column="tag"/> contains a value, the port is an access
750             port.  The <ref column="trunks"/> column should be empty.
751           </li>
752           <li>
753             Otherwise, the port is a trunk port.  The <ref column="trunks"/>
754             column value is honored if it is present.
755           </li>
756         </ul>
757       </column>
758
759       <column name="tag">
760         <p>
761           For an access port, the port's implicitly tagged VLAN.  For a
762           native-tagged or native-untagged port, the port's native VLAN.  Must
763           be empty if this is a trunk port.
764         </p>
765       </column>
766
767       <column name="trunks">
768         <p>
769           For a trunk, native-tagged, or native-untagged port, the 802.1Q VLAN
770           or VLANs that this port trunks; if it is empty, then the port trunks
771           all VLANs.  Must be empty if this is an access port.
772         </p>
773         <p>
774           A native-tagged or native-untagged port always trunks its native
775           VLAN, regardless of whether <ref column="trunks"/> includes that
776           VLAN.
777         </p>
778       </column>
779
780       <column name="other_config" key="priority-tags"
781               type='{"type": "boolean"}'>
782         <p>
783           An 802.1Q header contains two important pieces of information: a VLAN
784           ID and a priority.  A frame with a zero VLAN ID, called a
785           ``priority-tagged'' frame, is supposed to be treated the same way as
786           a frame without an 802.1Q header at all (except for the priority).
787         </p>
788
789         <p>
790           However, some network elements ignore any frame that has 802.1Q
791           header at all, even when the VLAN ID is zero.  Therefore, by default
792           Open vSwitch does not output priority-tagged frames, instead omitting
793           the 802.1Q header entirely if the VLAN ID is zero.  Set this key to
794           <code>true</code> to enable priority-tagged frames on a port.
795         </p>
796
797         <p>
798           Regardless of this setting, Open vSwitch omits the 802.1Q header on
799           output if both the VLAN ID and priority would be zero.
800         </p>
801
802         <p>
803           All frames output to native-tagged ports have a nonzero VLAN ID, so
804           this setting is not meaningful on native-tagged ports.
805         </p>
806       </column>
807     </group>
808
809     <group title="Bonding Configuration">
810       <p>A port that has more than one interface is a ``bonded port.'' Bonding
811       allows for load balancing and fail-over.</p>
812
813       <p>
814         The following types of bonding will work with any kind of upstream
815         switch.  On the upstream switch, do not configure the interfaces as a
816         bond:
817       </p>
818
819       <dl>
820         <dt><code>balance-slb</code></dt>
821         <dd>
822           Balances flows among slaves based on source MAC address and output
823           VLAN, with periodic rebalancing as traffic patterns change.
824         </dd>
825
826         <dt><code>active-backup</code></dt>
827         <dd>
828           Assigns all flows to one slave, failing over to a backup slave when
829           the active slave is disabled.  This is the only bonding mode in which
830           interfaces may be plugged into different upstream switches.
831         </dd>
832       </dl>
833
834       <p>
835         The following modes require the upstream switch to support 802.3ad with
836         successful LACP negotiation:
837       </p>
838
839       <dl>
840         <dt><code>balance-tcp</code></dt>
841         <dd>
842           Balances flows among slaves based on L2, L3, and L4 protocol
843           information such as destination MAC address, IP address, and TCP
844           port.
845         </dd>
846
847         <dt><code>stable</code></dt>
848         <dd>
849           <p>Deprecated and slated for removal in February 2013.</p>
850           <p>Attempts to always assign a given flow to the same slave
851           consistently.  In an effort to maintain stability, no load
852           balancing is done.  Uses a similar hashing strategy to
853           <code>balance-tcp</code>, always taking into account L3 and L4
854           fields even if LACP negotiations are unsuccessful. </p>
855           <p>Slave selection decisions are made based on <ref table="Interface"
856           column="other_config" key="bond-stable-id"/> if set.  Otherwise,
857           OpenFlow port number is used.  Decisions are consistent across all
858           <code>ovs-vswitchd</code> instances with equivalent
859           <ref table="Interface" column="other_config" key="bond-stable-id"/>
860           values.</p>
861         </dd>
862       </dl>
863
864       <p>These columns apply only to bonded ports.  Their values are
865       otherwise ignored.</p>
866
867       <column name="bond_mode">
868         <p>The type of bonding used for a bonded port.  Defaults to
869         <code>active-backup</code> if unset.
870         </p>
871       </column>
872
873       <column name="other_config" key="bond-hash-basis"
874               type='{"type": "integer"}'>
875         An integer hashed along with flows when choosing output slaves in load
876         balanced bonds.  When changed, all flows will be assigned different
877         hash values possibly causing slave selection decisions to change.  Does
878         not affect bonding modes which do not employ load balancing such as
879         <code>active-backup</code>.
880       </column>
881
882       <group title="Link Failure Detection">
883         <p>
884           An important part of link bonding is detecting that links are down so
885           that they may be disabled.  These settings determine how Open vSwitch
886           detects link failure.
887         </p>
888
889         <column name="other_config" key="bond-detect-mode"
890                 type='{"type": "string", "enum": ["set", ["carrier", "miimon"]]}'>
891           The means used to detect link failures.  Defaults to
892           <code>carrier</code> which uses each interface's carrier to detect
893           failures.  When set to <code>miimon</code>, will check for failures
894           by polling each interface's MII.
895         </column>
896
897         <column name="other_config" key="bond-miimon-interval"
898                 type='{"type": "integer"}'>
899           The interval, in milliseconds, between successive attempts to poll
900           each interface's MII.  Relevant only when <ref column="other_config"
901           key="bond-detect-mode"/> is <code>miimon</code>.
902         </column>
903
904         <column name="bond_updelay">
905           <p>
906             The number of milliseconds for which the link must stay up on an
907             interface before the interface is considered to be up.  Specify
908             <code>0</code> to enable the interface immediately.
909           </p>
910
911           <p>
912             This setting is honored only when at least one bonded interface is
913             already enabled.  When no interfaces are enabled, then the first
914             bond interface to come up is enabled immediately.
915           </p>
916         </column>
917
918         <column name="bond_downdelay">
919           The number of milliseconds for which the link must stay down on an
920           interface before the interface is considered to be down.  Specify
921           <code>0</code> to disable the interface immediately.
922         </column>
923       </group>
924
925       <group title="LACP Configuration">
926         <p>
927           LACP, the Link Aggregation Control Protocol, is an IEEE standard that
928           allows switches to automatically detect that they are connected by
929           multiple links and aggregate across those links.  These settings
930           control LACP behavior.
931         </p>
932
933         <column name="lacp">
934           Configures LACP on this port.  LACP allows directly connected
935           switches to negotiate which links may be bonded.  LACP may be enabled
936           on non-bonded ports for the benefit of any switches they may be
937           connected to.  <code>active</code> ports are allowed to initiate LACP
938           negotiations.  <code>passive</code> ports are allowed to participate
939           in LACP negotiations initiated by a remote switch, but not allowed to
940           initiate such negotiations themselves.  If LACP is enabled on a port
941           whose partner switch does not support LACP, the bond will be
942           disabled.  Defaults to <code>off</code> if unset.
943         </column>
944
945         <column name="other_config" key="lacp-system-id">
946           The LACP system ID of this <ref table="Port"/>.  The system ID of a
947           LACP bond is used to identify itself to its partners.  Must be a
948           nonzero MAC address. Defaults to the bridge Ethernet address if
949           unset.
950         </column>
951
952         <column name="other_config" key="lacp-system-priority"
953                 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
954           The LACP system priority of this <ref table="Port"/>.  In LACP
955           negotiations, link status decisions are made by the system with the
956           numerically lower priority.
957         </column>
958
959         <column name="other_config" key="lacp-time"
960           type='{"type": "string", "enum": ["set", ["fast", "slow"]]}'>
961           <p>
962             The LACP timing which should be used on this <ref table="Port"/>.
963             By default <code>slow</code> is used.  When configured to be
964             <code>fast</code> LACP heartbeats are requested at a rate of once
965             per second causing connectivity problems to be detected more
966             quickly.  In <code>slow</code> mode, heartbeats are requested at a
967             rate of once every 30 seconds.
968           </p>
969         </column>
970       </group>
971
972       <group title="Rebalancing Configuration">
973         <p>
974           These settings control behavior when a bond is in
975           <code>balance-slb</code> or <code>balance-tcp</code> mode.
976         </p>
977
978         <column name="other_config" key="bond-rebalance-interval"
979                 type='{"type": "integer", "minInteger": 0, "maxInteger": 10000}'>
980           For a load balanced bonded port, the number of milliseconds between
981           successive attempts to rebalance the bond, that is, to move flows
982           from one interface on the bond to another in an attempt to keep usage
983           of each interface roughly equal.  If zero, load balancing is disabled
984           on the bond (link failure still cause flows to move).  If
985           less than 1000ms, the rebalance interval will be 1000ms.
986         </column>
987       </group>
988
989       <column name="bond_fake_iface">
990         For a bonded port, whether to create a fake internal interface with the
991         name of the port.  Use only for compatibility with legacy software that
992         requires this.
993       </column>
994     </group>
995
996     <group title="Spanning Tree Configuration">
997       <column name="other_config" key="stp-enable"
998               type='{"type": "boolean"}'>
999         If spanning tree is enabled on the bridge, member ports are
1000         enabled by default (with the exception of bond, internal, and
1001         mirror ports which do not work with STP).  If this column's
1002         value is <code>false</code> spanning tree is disabled on the
1003         port.
1004       </column>
1005
1006        <column name="other_config" key="stp-port-num"
1007                type='{"type": "integer", "minInteger": 1, "maxInteger": 255}'>
1008         The port number used for the lower 8 bits of the port-id.  By
1009         default, the numbers will be assigned automatically.  If any
1010         port's number is manually configured on a bridge, then they
1011         must all be.
1012       </column>
1013
1014        <column name="other_config" key="stp-port-priority"
1015                type='{"type": "integer", "minInteger": 0, "maxInteger": 255}'>
1016         The port's relative priority value for determining the root
1017         port (the upper 8 bits of the port-id).  A port with a lower
1018         port-id will be chosen as the root port.  By default, the
1019         priority is 0x80.
1020       </column>
1021
1022        <column name="other_config" key="stp-path-cost"
1023                type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
1024         Spanning tree path cost for the port.  A lower number indicates
1025         a faster link.  By default, the cost is based on the maximum
1026         speed of the link.
1027       </column>
1028     </group>
1029
1030     <group title="Other Features">
1031       <column name="qos">
1032         Quality of Service configuration for this port.
1033       </column>
1034
1035       <column name="mac">
1036         The MAC address to use for this port for the purpose of choosing the
1037         bridge's MAC address.  This column does not necessarily reflect the
1038         port's actual MAC address, nor will setting it change the port's actual
1039         MAC address.
1040       </column>
1041
1042       <column name="fake_bridge">
1043         Does this port represent a sub-bridge for its tagged VLAN within the
1044         Bridge?  See ovs-vsctl(8) for more information.
1045       </column>
1046
1047       <column name="external_ids" key="fake-bridge-id-*">
1048         External IDs for a fake bridge (see the <ref column="fake_bridge"/>
1049         column) are defined by prefixing a <ref table="Bridge"/> <ref
1050         table="Bridge" column="external_ids"/> key with
1051         <code>fake-bridge-</code>,
1052         e.g. <code>fake-bridge-xs-network-uuids</code>.
1053       </column>
1054     </group>
1055
1056     <group title="Port Status">
1057       <p>
1058         Status information about ports attached to bridges.
1059       </p>
1060       <column name="status">
1061         Key-value pairs that report port status.
1062       </column>
1063       <column name="status" key="stp_port_id">
1064         <p>
1065           The port-id (in hex) used in spanning tree advertisements for
1066           this port.  Configuring the port-id is described in the
1067           <code>stp-port-num</code> and <code>stp-port-priority</code>
1068           keys of the <code>other_config</code> section earlier.
1069         </p>
1070       </column>
1071       <column name="status" key="stp_state"
1072               type='{"type": "string", "enum": ["set",
1073                             ["disabled", "listening", "learning",
1074                              "forwarding", "blocking"]]}'>
1075         <p>
1076           STP state of the port.
1077         </p>
1078       </column>
1079       <column name="status" key="stp_sec_in_state"
1080               type='{"type": "integer", "minInteger": 0}'>
1081         <p>
1082           The amount of time (in seconds) port has been in the current
1083           STP state.
1084         </p>
1085       </column>
1086       <column name="status" key="stp_role"
1087               type='{"type": "string", "enum": ["set",
1088                             ["root", "designated", "alternate"]]}'>
1089         <p>
1090           STP role of the port.
1091         </p>
1092       </column>
1093     </group>
1094
1095     <group title="Port Statistics">
1096       <p>
1097         Key-value pairs that report port statistics.
1098       </p>
1099       <group title="Statistics: STP transmit and receive counters">
1100         <column name="statistics" key="stp_tx_count">
1101           Number of STP BPDUs sent on this port by the spanning
1102           tree library.
1103         </column>
1104         <column name="statistics" key="stp_rx_count">
1105           Number of STP BPDUs received on this port and accepted by the
1106           spanning tree library.
1107         </column>
1108         <column name="statistics" key="stp_error_count">
1109           Number of bad STP BPDUs received on this port.  Bad BPDUs
1110           include runt packets and those with an unexpected protocol ID.
1111         </column>
1112       </group>
1113     </group>
1114
1115     <group title="Common Columns">
1116       The overall purpose of these columns is described under <code>Common
1117       Columns</code> at the beginning of this document.
1118
1119       <column name="other_config"/>
1120       <column name="external_ids"/>
1121     </group>
1122   </table>
1123
1124   <table name="Interface" title="One physical network device in a Port.">
1125     An interface within a <ref table="Port"/>.
1126
1127     <group title="Core Features">
1128       <column name="name">
1129         Interface name.  Should be alphanumeric and no more than about 8 bytes
1130         long.  May be the same as the port name, for non-bonded ports.  Must
1131         otherwise be unique among the names of ports, interfaces, and bridges
1132         on a host.
1133       </column>
1134
1135       <column name="mac">
1136         <p>Ethernet address to set for this interface.  If unset then the
1137         default MAC address is used:</p>
1138         <ul>
1139           <li>For the local interface, the default is the lowest-numbered MAC
1140           address among the other bridge ports, either the value of the
1141           <ref table="Port" column="mac"/> in its <ref table="Port"/> record,
1142           if set, or its actual MAC (for bonded ports, the MAC of its slave
1143           whose name is first in alphabetical order).  Internal ports and
1144           bridge ports that are used as port mirroring destinations (see the
1145           <ref table="Mirror"/> table) are ignored.</li>
1146           <li>For other internal interfaces, the default MAC is randomly
1147           generated.</li>
1148           <li>External interfaces typically have a MAC address associated with
1149           their hardware.</li>
1150         </ul>
1151         <p>Some interfaces may not have a software-controllable MAC
1152         address.</p>
1153       </column>
1154
1155       <column name="ofport">
1156         <p>OpenFlow port number for this interface.  Unlike most columns, this
1157         column's value should be set only by Open vSwitch itself.  Other
1158         clients should set this column to an empty set (the default) when
1159         creating an <ref table="Interface"/>.</p>
1160         <p>Open vSwitch populates this column when the port number becomes
1161         known.  If the interface is successfully added,
1162         <ref column="ofport"/> will be set to a number between 1 and 65535
1163         (generally either in the range 1 to 65279, inclusive, or 65534, the
1164         port number for the OpenFlow ``local port'').  If the interface
1165         cannot be added then Open vSwitch sets this column
1166         to -1.</p>
1167         <p>When <ref column="ofport_request"/> is not set, Open vSwitch picks
1168         an appropriate value for this column and then tries to keep the value
1169         constant across restarts.</p>
1170       </column>
1171
1172       <column name="ofport_request">
1173         <p>Requested OpenFlow port number for this interface.  The port
1174         number must be between 1 and 65279, inclusive.  Some datapaths
1175         cannot satisfy all requests for particular port numbers.  When
1176         this column is empty or the request cannot be fulfilled, the
1177         system will choose a free port.  The <ref column="ofport"/>
1178         column reports the assigned OpenFlow port number.</p>
1179         <p>The port number must be requested in the same transaction
1180         that creates the port.</p>
1181       </column>
1182     </group>
1183
1184     <group title="System-Specific Details">
1185       <column name="type">
1186         <p>
1187           The interface type, one of:
1188         </p>
1189
1190         <dl>
1191           <dt><code>system</code></dt>
1192           <dd>An ordinary network device, e.g. <code>eth0</code> on Linux.
1193           Sometimes referred to as ``external interfaces'' since they are
1194           generally connected to hardware external to that on which the Open
1195           vSwitch is running.  The empty string is a synonym for
1196           <code>system</code>.</dd>
1197
1198           <dt><code>internal</code></dt>
1199           <dd>A simulated network device that sends and receives traffic.  An
1200           internal interface whose <ref column="name"/> is the same as its
1201           bridge's <ref table="Open_vSwitch" column="name"/> is called the
1202           ``local interface.''  It does not make sense to bond an internal
1203           interface, so the terms ``port'' and ``interface'' are often used
1204           imprecisely for internal interfaces.</dd>
1205
1206           <dt><code>tap</code></dt>
1207           <dd>A TUN/TAP device managed by Open vSwitch.</dd>
1208
1209           <dt><code>gre</code></dt>
1210           <dd>
1211             An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
1212             tunnel.
1213           </dd>
1214
1215           <dt><code>ipsec_gre</code></dt>
1216           <dd>
1217             An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
1218             IPsec tunnel.
1219           </dd>
1220
1221           <dt><code>gre64</code></dt>
1222           <dd>
1223             It is same as GRE, but it allows 64 bit key. To store higher 32-bits
1224             of key, it uses GRE protocol sequence number field. This is non
1225             standard use of GRE protocol since OVS does not increment
1226             sequence number for every packet at time of encap as expected by
1227             standard GRE implementation. See <ref group="Tunnel Options"/>
1228             for information on configuring GRE tunnels.
1229           </dd>
1230
1231           <dt><code>ipsec_gre64</code></dt>
1232           <dd>
1233             Same as IPSEC_GRE except 64 bit key.
1234           </dd>
1235
1236           <dt><code>capwap</code></dt>
1237           <dd>
1238             An Ethernet tunnel over the UDP transport portion of CAPWAP (RFC
1239             5415).  This allows interoperability with certain switches that do
1240             not support GRE.  Only the tunneling component of the protocol is
1241             implemented.  UDP ports 58881 and 58882 are used as the source and
1242             destination ports respectively.  CAPWAP is currently supported only
1243             with the Linux kernel datapath with kernel version 2.6.26 or later.
1244
1245             CAPWAP support is deprecated and will be removed no earlier than
1246             February 2013.
1247           </dd>
1248
1249           <dt><code>vxlan</code></dt>
1250           <dd>
1251             <p>
1252               An Ethernet tunnel over the experimental, UDP-based VXLAN
1253               protocol described at
1254               <code>http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-02</code>.
1255               VXLAN is currently supported only with the Linux kernel datapath
1256               with kernel version 2.6.26 or later.
1257             </p>
1258             <p>
1259               As an experimental protocol, VXLAN has no officially assigned UDP
1260               port.  Open vSwitch currently uses UDP destination port 8472.
1261               The source port used for VXLAN traffic varies on a per-flow basis
1262               and is in the ephemeral port range.
1263             </p>
1264           </dd>
1265
1266           <dt><code>patch</code></dt>
1267           <dd>
1268             A pair of virtual devices that act as a patch cable.
1269           </dd>
1270
1271           <dt><code>null</code></dt>
1272           <dd>An ignored interface. Deprecated and slated for removal in
1273               February 2013.</dd>
1274         </dl>
1275       </column>
1276     </group>
1277
1278     <group title="Tunnel Options">
1279       <p>
1280         These options apply to interfaces with <ref column="type"/> of
1281         <code>gre</code>, <code>ipsec_gre</code>, <code>gre64</code>,
1282         <code>ipsec_gre64</code>, <code>capwap</code>, and
1283         <code>vxlan</code>.
1284       </p>
1285
1286       <p>
1287         Each tunnel must be uniquely identified by the combination of <ref
1288         column="type"/>, <ref column="options" key="remote_ip"/>, <ref
1289         column="options" key="local_ip"/>, and <ref column="options"
1290         key="in_key"/>.  If two ports are defined that are the same except one
1291         has an optional identifier and the other does not, the more specific
1292         one is matched first.  <ref column="options" key="in_key"/> is
1293         considered more specific than <ref column="options" key="local_ip"/> if
1294         a port defines one and another port defines the other.
1295       </p>
1296
1297       <column name="options" key="remote_ip">
1298         <p>
1299           Required.  The tunnel endpoint.  Unicast and multicast endpoints are
1300           both supported.
1301         </p>
1302
1303         <p>
1304           When a multicast endpoint is specified, a routing table lookup occurs
1305           only when the tunnel is created.  Following a routing change, delete
1306           and then re-create the tunnel to force a new routing table lookup.
1307         </p>
1308       </column>
1309
1310       <column name="options" key="local_ip">
1311         Optional.  The destination IP that received packets must match.
1312         Default is to match all addresses.  Must be omitted when <ref
1313         column="options" key="remote_ip"/> is a multicast address.
1314       </column>
1315
1316       <column name="options" key="in_key">
1317         <p>Optional.  The key that received packets must contain, one of:</p>
1318
1319         <ul>
1320           <li>
1321             <code>0</code>.  The tunnel receives packets with no key or with a
1322             key of 0.  This is equivalent to specifying no <ref column="options"
1323             key="in_key"/> at all.
1324           </li>
1325           <li>
1326             A positive 24-bit (for VXLAN), 32-bit (for GRE) or 64-bit (for
1327             CAPWAP) number.  The tunnel receives only packets with the
1328             specified key.
1329           </li>
1330           <li>
1331             The word <code>flow</code>.  The tunnel accepts packets with any
1332             key.  The key will be placed in the <code>tun_id</code> field for
1333             matching in the flow table.  The <code>ovs-ofctl</code> manual page
1334             contains additional information about matching fields in OpenFlow
1335             flows.
1336           </li>
1337         </ul>
1338
1339         <p>
1340         </p>
1341       </column>
1342
1343       <column name="options" key="out_key">
1344         <p>Optional.  The key to be set on outgoing packets, one of:</p>
1345
1346         <ul>
1347           <li>
1348             <code>0</code>.  Packets sent through the tunnel will have no key.
1349             This is equivalent to specifying no <ref column="options"
1350             key="out_key"/> at all.
1351           </li>
1352           <li>
1353             A positive 24-bit (for VXLAN), 32-bit (for GRE) or 64-bit (for
1354             CAPWAP) number.  Packets sent through the tunnel will have the
1355             specified key.
1356           </li>
1357           <li>
1358             The word <code>flow</code>.  Packets sent through the tunnel will
1359             have the key set using the <code>set_tunnel</code> Nicira OpenFlow
1360             vendor extension (0 is used in the absence of an action).  The
1361             <code>ovs-ofctl</code> manual page contains additional information
1362             about the Nicira OpenFlow vendor extensions.
1363           </li>
1364         </ul>
1365       </column>
1366
1367       <column name="options" key="key">
1368         Optional.  Shorthand to set <code>in_key</code> and
1369         <code>out_key</code> at the same time.
1370       </column>
1371
1372       <column name="options" key="tos">
1373         Optional.  The value of the ToS bits to be set on the encapsulating
1374         packet.  ToS is interpreted as DSCP and ECN bits, ECN part must be
1375         zero.  It may also be the word <code>inherit</code>, in which case
1376         the ToS will be copied from the inner packet if it is IPv4 or IPv6
1377         (otherwise it will be 0).  The ECN fields are always inherited.
1378         Default is 0.
1379       </column>
1380
1381       <column name="options" key="ttl">
1382         Optional.  The TTL to be set on the encapsulating packet.  It may also
1383         be the word <code>inherit</code>, in which case the TTL will be copied
1384         from the inner packet if it is IPv4 or IPv6 (otherwise it will be the
1385         system default, typically 64).  Default is the system default TTL.
1386       </column>
1387
1388       <column name="options" key="df_inherit" type='{"type": "boolean"}'>
1389         Optional.  If enabled, the Don't Fragment bit will be copied from the
1390         inner IP headers (those of the encapsulated traffic) to the outer
1391         (tunnel) headers.  Default is disabled; set to <code>true</code> to
1392         enable.
1393       </column>
1394
1395       <column name="options" key="df_default"
1396               type='{"type": "boolean"}'>
1397         Optional.  If enabled, the Don't Fragment bit will be set by default on
1398         tunnel headers if the <code>df_inherit</code> option is not set, or if
1399         the encapsulated packet is not IP.  Default is enabled; set to
1400         <code>false</code> to disable.
1401       </column>
1402
1403       <column name="options" key="pmtud" type='{"type": "boolean"}'>
1404         Optional.  Enable tunnel path MTU discovery.  If enabled ``ICMP
1405         Destination Unreachable - Fragmentation Needed'' messages will be
1406         generated for IPv4 packets with the DF bit set and IPv6 packets above
1407         the minimum MTU if the packet size exceeds the path MTU minus the size
1408         of the tunnel headers.  Note that this option causes behavior that is
1409         typically reserved for routers and therefore is not entirely in
1410         compliance with the IEEE 802.1D specification for bridges.  Default is
1411         disabled; set to <code>true</code> to enable.  This feature is
1412         deprecated and will be removed soon.
1413       </column>
1414
1415       <group title="Tunnel Options: gre and ipsec_gre only">
1416         <p>
1417           Only <code>gre</code> and <code>ipsec_gre</code> interfaces support
1418           these options.
1419         </p>
1420
1421         <column name="options" key="csum" type='{"type": "boolean"}'>
1422           <p>
1423             Optional.  Compute GRE checksums on outgoing packets.  Default is
1424             disabled, set to <code>true</code> to enable.  Checksums present on
1425             incoming packets will be validated regardless of this setting.
1426           </p>
1427
1428           <p>
1429             GRE checksums impose a significant performance penalty because they
1430             cover the entire packet.  The encapsulated L3, L4, and L7 packet
1431             contents typically have their own checksums, so this additional
1432             checksum only adds value for the GRE and encapsulated L2 headers.
1433           </p>
1434
1435           <p>
1436             This option is supported for <code>ipsec_gre</code>, but not useful
1437             because GRE checksums are weaker than, and redundant with, IPsec
1438             payload authentication.
1439           </p>
1440         </column>
1441       </group>
1442
1443       <group title="Tunnel Options: ipsec_gre only">
1444         <p>
1445           Only <code>ipsec_gre</code> interfaces support these options.
1446         </p>
1447
1448         <column name="options" key="peer_cert">
1449           Required for certificate authentication.  A string containing the
1450           peer's certificate in PEM format.  Additionally the host's
1451           certificate must be specified with the <code>certificate</code>
1452           option.
1453         </column>
1454
1455         <column name="options" key="certificate">
1456           Required for certificate authentication.  The name of a PEM file
1457           containing a certificate that will be presented to the peer during
1458           authentication.
1459         </column>
1460
1461         <column name="options" key="private_key">
1462           Optional for certificate authentication.  The name of a PEM file
1463           containing the private key associated with <code>certificate</code>.
1464           If <code>certificate</code> contains the private key, this option may
1465           be omitted.
1466         </column>
1467
1468         <column name="options" key="psk">
1469           Required for pre-shared key authentication.  Specifies a pre-shared
1470           key for authentication that must be identical on both sides of the
1471           tunnel.
1472         </column>
1473       </group>
1474     </group>
1475
1476     <group title="Patch Options">
1477       <p>
1478         Only <code>patch</code> interfaces support these options.
1479       </p>
1480
1481       <column name="options" key="peer">
1482         The <ref column="name"/> of the <ref table="Interface"/> for the other
1483         side of the patch.  The named <ref table="Interface"/>'s own
1484         <code>peer</code> option must specify this <ref table="Interface"/>'s
1485         name.  That is, the two patch interfaces must have reversed <ref
1486         column="name"/> and <code>peer</code> values.
1487       </column>
1488     </group>
1489
1490     <group title="Interface Status">
1491       <p>
1492         Status information about interfaces attached to bridges, updated every
1493         5 seconds.  Not all interfaces have all of these properties; virtual
1494         interfaces don't have a link speed, for example.  Non-applicable
1495         columns will have empty values.
1496       </p>
1497       <column name="admin_state">
1498         <p>
1499           The administrative state of the physical network link.
1500         </p>
1501       </column>
1502
1503       <column name="link_state">
1504         <p>
1505           The observed state of the physical network link.  This is ordinarily
1506           the link's carrier status.  If the interface's <ref table="Port"/> is
1507           a bond configured for miimon monitoring, it is instead the network
1508           link's miimon status.
1509         </p>
1510       </column>
1511
1512       <column name="link_resets">
1513         <p>
1514           The number of times Open vSwitch has observed the
1515           <ref column="link_state"/> of this <ref table="Interface"/> change.
1516         </p>
1517       </column>
1518
1519       <column name="link_speed">
1520         <p>
1521           The negotiated speed of the physical network link.
1522           Valid values are positive integers greater than 0.
1523         </p>
1524       </column>
1525
1526       <column name="duplex">
1527         <p>
1528           The duplex mode of the physical network link.
1529         </p>
1530       </column>
1531
1532       <column name="mtu">
1533         <p>
1534           The MTU (maximum transmission unit); i.e. the largest
1535           amount of data that can fit into a single Ethernet frame.
1536           The standard Ethernet MTU is 1500 bytes.  Some physical media
1537           and many kinds of virtual interfaces can be configured with
1538           higher MTUs.
1539         </p>
1540         <p>
1541           This column will be empty for an interface that does not
1542           have an MTU as, for example, some kinds of tunnels do not.
1543         </p>
1544       </column>
1545
1546       <column name="lacp_current">
1547         Boolean value indicating LACP status for this interface.  If true, this
1548         interface has current LACP information about its LACP partner.  This
1549         information may be used to monitor the health of interfaces in a LACP
1550         enabled port.  This column will be empty if LACP is not enabled.
1551       </column>
1552
1553       <column name="status">
1554         Key-value pairs that report port status.  Supported status values are
1555         <ref column="type"/>-dependent; some interfaces may not have a valid
1556         <ref column="status" key="driver_name"/>, for example.
1557       </column>
1558
1559       <column name="status" key="driver_name">
1560         The name of the device driver controlling the network adapter.
1561       </column>
1562
1563       <column name="status" key="driver_version">
1564         The version string of the device driver controlling the network
1565         adapter.
1566       </column>
1567
1568       <column name="status" key="firmware_version">
1569         The version string of the network adapter's firmware, if available.
1570       </column>
1571
1572       <column name="status" key="source_ip">
1573         The source IP address used for an IPv4 tunnel end-point, such as
1574         <code>gre</code> or <code>capwap</code>.
1575       </column>
1576
1577       <column name="status" key="tunnel_egress_iface">
1578         Egress interface for tunnels.  Currently only relevant for GRE and
1579         CAPWAP tunnels.  On Linux systems, this column will show the name of
1580         the interface which is responsible for routing traffic destined for the
1581         configured <ref column="options" key="remote_ip"/>.  This could be an
1582         internal interface such as a bridge port.
1583       </column>
1584
1585       <column name="status" key="tunnel_egress_iface_carrier"
1586               type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
1587         Whether carrier is detected on <ref column="status"
1588         key="tunnel_egress_iface"/>.
1589       </column>
1590     </group>
1591
1592     <group title="Statistics">
1593       <p>
1594         Key-value pairs that report interface statistics.  The current
1595         implementation updates these counters periodically.  Future
1596         implementations may update them when an interface is created, when they
1597         are queried (e.g. using an OVSDB <code>select</code> operation), and
1598         just before an interface is deleted due to virtual interface hot-unplug
1599         or VM shutdown, and perhaps at other times, but not on any regular
1600         periodic basis.
1601       </p>
1602       <p>
1603         These are the same statistics reported by OpenFlow in its <code>struct
1604         ofp_port_stats</code> structure.  If an interface does not support a
1605         given statistic, then that pair is omitted.
1606       </p>
1607       <group title="Statistics: Successful transmit and receive counters">
1608         <column name="statistics" key="rx_packets">
1609           Number of received packets.
1610         </column>
1611         <column name="statistics" key="rx_bytes">
1612           Number of received bytes.
1613         </column>
1614         <column name="statistics" key="tx_packets">
1615           Number of transmitted packets.
1616         </column>
1617         <column name="statistics" key="tx_bytes">
1618           Number of transmitted bytes.
1619         </column>
1620       </group>
1621       <group title="Statistics: Receive errors">
1622         <column name="statistics" key="rx_dropped">
1623           Number of packets dropped by RX.
1624         </column>
1625         <column name="statistics" key="rx_frame_err">
1626           Number of frame alignment errors.
1627         </column>
1628         <column name="statistics" key="rx_over_err">
1629           Number of packets with RX overrun.
1630         </column>
1631         <column name="statistics" key="rx_crc_err">
1632           Number of CRC errors.
1633         </column>
1634         <column name="statistics" key="rx_errors">
1635           Total number of receive errors, greater than or equal to the sum of
1636           the above.
1637         </column>
1638       </group>
1639       <group title="Statistics: Transmit errors">
1640         <column name="statistics" key="tx_dropped">
1641           Number of packets dropped by TX.
1642         </column>
1643         <column name="statistics" key="collisions">
1644           Number of collisions.
1645         </column>
1646         <column name="statistics" key="tx_errors">
1647           Total number of transmit errors, greater than or equal to the sum of
1648           the above.
1649         </column>
1650       </group>
1651     </group>
1652
1653     <group title="Ingress Policing">
1654       <p>
1655         These settings control ingress policing for packets received on this
1656         interface.  On a physical interface, this limits the rate at which
1657         traffic is allowed into the system from the outside; on a virtual
1658         interface (one connected to a virtual machine), this limits the rate at
1659         which the VM is able to transmit.
1660       </p>
1661       <p>
1662         Policing is a simple form of quality-of-service that simply drops
1663         packets received in excess of the configured rate.  Due to its
1664         simplicity, policing is usually less accurate and less effective than
1665         egress QoS (which is configured using the <ref table="QoS"/> and <ref
1666         table="Queue"/> tables).
1667       </p>
1668       <p>
1669         Policing is currently implemented only on Linux.  The Linux
1670         implementation uses a simple ``token bucket'' approach:
1671       </p>
1672       <ul>
1673         <li>
1674           The size of the bucket corresponds to <ref
1675           column="ingress_policing_burst"/>.  Initially the bucket is full.
1676         </li>
1677         <li>
1678           Whenever a packet is received, its size (converted to tokens) is
1679           compared to the number of tokens currently in the bucket.  If the
1680           required number of tokens are available, they are removed and the
1681           packet is forwarded.  Otherwise, the packet is dropped.
1682         </li>
1683         <li>
1684           Whenever it is not full, the bucket is refilled with tokens at the
1685           rate specified by <ref column="ingress_policing_rate"/>.
1686         </li>
1687       </ul>
1688       <p>
1689         Policing interacts badly with some network protocols, and especially
1690         with fragmented IP packets.  Suppose that there is enough network
1691         activity to keep the bucket nearly empty all the time.  Then this token
1692         bucket algorithm will forward a single packet every so often, with the
1693         period depending on packet size and on the configured rate.  All of the
1694         fragments of an IP packets are normally transmitted back-to-back, as a
1695         group.  In such a situation, therefore, only one of these fragments
1696         will be forwarded and the rest will be dropped.  IP does not provide
1697         any way for the intended recipient to ask for only the remaining
1698         fragments.  In such a case there are two likely possibilities for what
1699         will happen next: either all of the fragments will eventually be
1700         retransmitted (as TCP will do), in which case the same problem will
1701         recur, or the sender will not realize that its packet has been dropped
1702         and data will simply be lost (as some UDP-based protocols will do).
1703         Either way, it is possible that no forward progress will ever occur.
1704       </p>
1705       <column name="ingress_policing_rate">
1706         <p>
1707           Maximum rate for data received on this interface, in kbps.  Data
1708           received faster than this rate is dropped.  Set to <code>0</code>
1709           (the default) to disable policing.
1710         </p>
1711       </column>
1712
1713       <column name="ingress_policing_burst">
1714         <p>Maximum burst size for data received on this interface, in kb.  The
1715         default burst size if set to <code>0</code> is 1000 kb.  This value
1716         has no effect if <ref column="ingress_policing_rate"/>
1717         is <code>0</code>.</p>
1718         <p>
1719           Specifying a larger burst size lets the algorithm be more forgiving,
1720           which is important for protocols like TCP that react severely to
1721           dropped packets.  The burst size should be at least the size of the
1722           interface's MTU.  Specifying a value that is numerically at least as
1723           large as 10% of <ref column="ingress_policing_rate"/> helps TCP come
1724           closer to achieving the full rate.
1725         </p>
1726       </column>
1727     </group>
1728
1729     <group title="Connectivity Fault Management">
1730       <p>
1731         802.1ag Connectivity Fault Management (CFM) allows a group of
1732         Maintenance Points (MPs) called a Maintenance Association (MA) to
1733         detect connectivity problems with each other.  MPs within a MA should
1734         have complete and exclusive interconnectivity.  This is verified by
1735         occasionally broadcasting Continuity Check Messages (CCMs) at a
1736         configurable transmission interval.
1737       </p>
1738
1739       <p>
1740         According to the 802.1ag specification, each Maintenance Point should
1741         be configured out-of-band with a list of Remote Maintenance Points it
1742         should have connectivity to.  Open vSwitch differs from the
1743         specification in this area.  It simply assumes the link is faulted if
1744         no Remote Maintenance Points are reachable, and considers it not
1745         faulted otherwise.
1746       </p>
1747
1748       <p>
1749           When operating over tunnels which have no <code>in_key</code>, or an
1750           <code>in_key</code> of <code>flow</code>.  CFM will only accept CCMs
1751           with a tunnel key of zero.
1752       </p>
1753
1754       <column name="cfm_mpid">
1755         A Maintenance Point ID (MPID) uniquely identifies each endpoint within
1756         a Maintenance Association.  The MPID is used to identify this endpoint
1757         to other Maintenance Points in the MA.  Each end of a link being
1758         monitored should have a different MPID.  Must be configured to enable
1759         CFM on this <ref table="Interface"/>.
1760       </column>
1761
1762       <column name="cfm_fault">
1763         <p>
1764           Indicates a connectivity fault triggered by an inability to receive
1765           heartbeats from any remote endpoint.  When a fault is triggered on
1766           <ref table="Interface"/>s participating in bonds, they will be
1767           disabled.
1768         </p>
1769         <p>
1770           Faults can be triggered for several reasons.  Most importantly they
1771           are triggered when no CCMs are received for a period of 3.5 times the
1772           transmission interval. Faults are also triggered when any CCMs
1773           indicate that a Remote Maintenance Point is not receiving CCMs but
1774           able to send them.  Finally, a fault is triggered if a CCM is
1775           received which indicates unexpected configuration.  Notably, this
1776           case arises when a CCM is received which advertises the local MPID.
1777         </p>
1778       </column>
1779
1780       <column name="cfm_fault_status" key="recv">
1781         Indicates a CFM fault was triggered due to a lack of CCMs received on
1782         the <ref table="Interface"/>.
1783       </column>
1784
1785       <column name="cfm_fault_status" key="rdi">
1786         Indicates a CFM fault was triggered due to the reception of a CCM with
1787         the RDI bit flagged.  Endpoints set the RDI bit in their CCMs when they
1788         are not receiving CCMs themselves.  This typically indicates a
1789         unidirectional connectivity failure.
1790       </column>
1791
1792       <column name="cfm_fault_status" key="maid">
1793         Indicates a CFM fault was triggered due to the reception of a CCM with
1794         a MAID other than the one Open vSwitch uses.  CFM broadcasts are tagged
1795         with an identification number in addition to the MPID called the MAID.
1796         Open vSwitch only supports receiving CCM broadcasts tagged with the
1797         MAID it uses internally.
1798       </column>
1799
1800       <column name="cfm_fault_status" key="loopback">
1801         Indicates a CFM fault was triggered due to the reception of a CCM
1802         advertising the same MPID configured in the <ref column="cfm_mpid"/>
1803         column of this <ref table="Interface"/>.  This may indicate a loop in
1804         the network.
1805       </column>
1806
1807       <column name="cfm_fault_status" key="overflow">
1808         Indicates a CFM fault was triggered because the CFM module received
1809         CCMs from more remote endpoints than it can keep track of.
1810       </column>
1811
1812       <column name="cfm_fault_status" key="override">
1813         Indicates a CFM fault was manually triggered by an administrator using
1814         an <code>ovs-appctl</code> command.
1815       </column>
1816
1817       <column name="cfm_fault_status" key="interval">
1818         Indicates a CFM fault was triggered due to the reception of a CCM
1819         frame having an invalid interval.
1820       </column>
1821
1822       <column name="cfm_remote_opstate">
1823         <p>When in extended mode, indicates the operational state of the
1824           remote endpoint as either <code>up</code> or <code>down</code>.  See
1825           <ref column="other_config" key="cfm_opstate"/>.
1826         </p>
1827       </column>
1828
1829       <column name="cfm_health">
1830         <p>
1831           Indicates the health of the interface as a percentage of CCM frames
1832           received over 21 <ref column="other_config" key="cfm_interval"/>s.
1833           The health of an interface is undefined if it is communicating with
1834           more than one <ref column="cfm_remote_mpids"/>.  It reduces if
1835           healthy heartbeats are not received at the expected rate, and
1836           gradually improves as healthy heartbeats are received at the desired
1837           rate. Every 21 <ref column="other_config" key="cfm_interval"/>s, the
1838           health of the interface is refreshed.
1839         </p>
1840         <p>
1841           As mentioned above, the faults can be triggered for several reasons.
1842           The link health will deteriorate even if heartbeats are received but
1843           they are reported to be unhealthy.  An unhealthy heartbeat in this
1844           context is a heartbeat for which either some fault is set or is out
1845           of sequence.  The interface health can be 100 only on receiving
1846           healthy heartbeats at the desired rate.
1847         </p>
1848       </column>
1849
1850       <column name="cfm_remote_mpids">
1851         When CFM is properly configured, Open vSwitch will occasionally
1852         receive CCM broadcasts.  These broadcasts contain the MPID of the
1853         sending Maintenance Point.  The list of MPIDs from which this
1854         <ref table="Interface"/> is receiving broadcasts from is regularly
1855         collected and written to this column.
1856       </column>
1857
1858       <column name="other_config" key="cfm_interval"
1859               type='{"type": "integer"}'>
1860         <p>
1861           The interval, in milliseconds, between transmissions of CFM
1862           heartbeats.  Three missed heartbeat receptions indicate a
1863           connectivity fault.
1864         </p>
1865
1866         <p>
1867           In standard operation only intervals of 3, 10, 100, 1,000, 10,000,
1868           60,000, or 600,000 ms are supported.  Other values will be rounded
1869           down to the nearest value on the list.  Extended mode (see <ref
1870           column="other_config" key="cfm_extended"/>) supports any interval up
1871           to 65,535 ms.  In either mode, the default is 1000 ms.
1872         </p>
1873
1874         <p>We do not recommend using intervals less than 100 ms.</p>
1875       </column>
1876
1877       <column name="other_config" key="cfm_extended"
1878               type='{"type": "boolean"}'>
1879         When <code>true</code>, the CFM module operates in extended mode. This
1880         causes it to use a nonstandard destination address to avoid conflicting
1881         with compliant implementations which may be running concurrently on the
1882         network. Furthermore, extended mode increases the accuracy of the
1883         <code>cfm_interval</code> configuration parameter by breaking wire
1884         compatibility with 802.1ag compliant implementations.  Defaults to
1885         <code>false</code>.
1886       </column>
1887       <column name="other_config" key="cfm_opstate"
1888               type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
1889         When <code>down</code>, the CFM module marks all CCMs it generates as
1890         operationally down without triggering a fault.  This allows remote
1891         maintenance points to choose not to forward traffic to the
1892         <ref table="Interface"/> on which this CFM module is running.
1893         Currently, in Open vSwitch, the opdown bit of CCMs affects
1894         <ref table="Interface"/>s participating in bonds, and the bundle
1895         OpenFlow action. This setting is ignored when CFM is not in extended
1896         mode.  Defaults to <code>up</code>.
1897       </column>
1898
1899       <column name="other_config" key="cfm_ccm_vlan"
1900         type='{"type": "integer", "minInteger": 1, "maxInteger": 4095}'>
1901         When set, the CFM module will apply a VLAN tag to all CCMs it generates
1902         with the given value.  May be the string <code>random</code> in which
1903         case each CCM will be tagged with a different randomly generated VLAN.
1904       </column>
1905
1906       <column name="other_config" key="cfm_ccm_pcp"
1907         type='{"type": "integer", "minInteger": 1, "maxInteger": 7}'>
1908         When set, the CFM module will apply a VLAN tag to all CCMs it generates
1909         with the given PCP value, the VLAN ID of the tag is governed by the
1910         value of <ref column="other_config" key="cfm_ccm_vlan"/>. If
1911         <ref column="other_config" key="cfm_ccm_vlan"/> is unset, a VLAN ID of
1912         zero is used.
1913       </column>
1914
1915     </group>
1916
1917     <group title="Bonding Configuration">
1918       <column name="other_config" key="bond-stable-id"
1919               type='{"type": "integer", "minInteger": 1}'>
1920         Used in <code>stable</code> bond mode to make slave
1921         selection decisions.  Allocating <ref column="other_config"
1922         key="bond-stable-id"/> values consistently across interfaces
1923         participating in a bond will guarantee consistent slave selection
1924         decisions across <code>ovs-vswitchd</code> instances when using
1925         <code>stable</code> bonding mode.
1926       </column>
1927
1928       <column name="other_config" key="lacp-port-id"
1929               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
1930         The LACP port ID of this <ref table="Interface"/>.  Port IDs are
1931         used in LACP negotiations to identify individual ports
1932         participating in a bond.
1933       </column>
1934
1935       <column name="other_config" key="lacp-port-priority"
1936               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
1937         The LACP port priority of this <ref table="Interface"/>.  In LACP
1938         negotiations <ref table="Interface"/>s with numerically lower
1939         priorities are preferred for aggregation.
1940       </column>
1941
1942       <column name="other_config" key="lacp-aggregation-key"
1943               type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
1944         The LACP aggregation key of this <ref table="Interface"/>.  <ref
1945         table="Interface"/>s with different aggregation keys may not be active
1946         within a given <ref table="Port"/> at the same time.
1947       </column>
1948     </group>
1949
1950     <group title="Virtual Machine Identifiers">
1951       <p>
1952         These key-value pairs specifically apply to an interface that
1953         represents a virtual Ethernet interface connected to a virtual
1954         machine.  These key-value pairs should not be present for other types
1955         of interfaces.  Keys whose names end in <code>-uuid</code> have
1956         values that uniquely identify the entity in question.  For a Citrix
1957         XenServer hypervisor, these values are UUIDs in RFC 4122 format.
1958         Other hypervisors may use other formats.
1959       </p>
1960
1961       <column name="external_ids" key="attached-mac">
1962         The MAC address programmed into the ``virtual hardware'' for this
1963         interface, in the form
1964         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
1965         For Citrix XenServer, this is the value of the <code>MAC</code> field
1966         in the VIF record for this interface.
1967       </column>
1968
1969       <column name="external_ids" key="iface-id">
1970         A system-unique identifier for the interface.  On XenServer, this will
1971         commonly be the same as <ref column="external_ids" key="xs-vif-uuid"/>.
1972       </column>
1973
1974       <column name="external_ids" key="iface-status"
1975               type='{"type": "string",
1976                     "enum": ["set", ["active", "inactive"]]}'>
1977         <p>
1978           Hypervisors may sometimes have more than one interface associated
1979           with a given <ref column="external_ids" key="iface-id"/>, only one of
1980           which is actually in use at a given time.  For example, in some
1981           circumstances XenServer has both a ``tap'' and a ``vif'' interface
1982           for a single <ref column="external_ids" key="iface-id"/>, but only
1983           uses one of them at a time.  A hypervisor that behaves this way must
1984           mark the currently in use interface <code>active</code> and the
1985           others <code>inactive</code>.  A hypervisor that never has more than
1986           one interface for a given <ref column="external_ids" key="iface-id"/>
1987           may mark that interface <code>active</code> or omit <ref
1988           column="external_ids" key="iface-status"/> entirely.
1989         </p>
1990
1991         <p>
1992           During VM migration, a given <ref column="external_ids"
1993           key="iface-id"/> might transiently be marked <code>active</code> on
1994           two different hypervisors.  That is, <code>active</code> means that
1995           this <ref column="external_ids" key="iface-id"/> is the active
1996           instance within a single hypervisor, not in a broader scope.
1997         </p>
1998       </column>
1999
2000       <column name="external_ids" key="xs-vif-uuid">
2001         The virtual interface associated with this interface.
2002       </column>
2003
2004       <column name="external_ids" key="xs-network-uuid">
2005         The virtual network to which this interface is attached.
2006       </column>
2007
2008       <column name="external_ids" key="vm-id">
2009         The VM to which this interface belongs. On XenServer, this will be the
2010         same as <ref column="external_ids" key="xs-vm-uuid"/>.
2011       </column>
2012
2013       <column name="external_ids" key="xs-vm-uuid">
2014         The VM to which this interface belongs.
2015       </column>
2016     </group>
2017
2018     <group title="VLAN Splinters">
2019       <p>
2020         The ``VLAN splinters'' feature increases Open vSwitch compatibility
2021         with buggy network drivers in old versions of Linux that do not
2022         properly support VLANs when VLAN devices are not used, at some cost
2023         in memory and performance.
2024       </p>
2025
2026       <p>
2027         When VLAN splinters are enabled on a particular interface, Open vSwitch
2028         creates a VLAN device for each in-use VLAN.  For sending traffic tagged
2029         with a VLAN on the interface, it substitutes the VLAN device.  Traffic
2030         received on the VLAN device is treated as if it had been received on
2031         the interface on the particular VLAN.
2032       </p>
2033
2034       <p>
2035         VLAN splinters consider a VLAN to be in use if:
2036       </p>
2037
2038       <ul>
2039         <li>
2040           The VLAN is the <ref table="Port" column="tag"/> value in any <ref
2041           table="Port"/> record.
2042         </li>
2043
2044         <li>
2045           The VLAN is listed within the <ref table="Port" column="trunks"/>
2046           column of the <ref table="Port"/> record of an interface on which
2047           VLAN splinters are enabled.
2048
2049           An empty <ref table="Port" column="trunks"/> does not influence the
2050           in-use VLANs: creating 4,096 VLAN devices is impractical because it
2051           will exceed the current 1,024 port per datapath limit.
2052         </li>
2053
2054         <li>
2055           An OpenFlow flow within any bridge matches the VLAN.
2056         </li>
2057       </ul>
2058
2059       <p>
2060         The same set of in-use VLANs applies to every interface on which VLAN
2061         splinters are enabled.  That is, the set is not chosen separately for
2062         each interface but selected once as the union of all in-use VLANs based
2063         on the rules above.
2064       </p>
2065
2066       <p>
2067         It does not make sense to enable VLAN splinters on an interface for an
2068         access port, or on an interface that is not a physical port.
2069       </p>
2070
2071       <p>
2072         VLAN splinters are deprecated.  When broken device drivers are no
2073         longer in widespread use, we will delete this feature.
2074       </p>
2075
2076       <column name="other_config" key="enable-vlan-splinters"
2077               type='{"type": "boolean"}'>
2078         <p>
2079           Set to <code>true</code> to enable VLAN splinters on this interface.
2080           Defaults to <code>false</code>.
2081         </p>
2082
2083         <p>
2084           VLAN splinters increase kernel and userspace memory overhead, so do
2085           not use them unless they are needed.
2086         </p>
2087
2088         <p>
2089           VLAN splinters do not support 802.1p priority tags.  Received
2090           priorities will appear to be 0, regardless of their actual values,
2091           and priorities on transmitted packets will also be cleared to 0.
2092         </p>
2093       </column>
2094     </group>
2095
2096     <group title="Common Columns">
2097       The overall purpose of these columns is described under <code>Common
2098       Columns</code> at the beginning of this document.
2099
2100       <column name="other_config"/>
2101       <column name="external_ids"/>
2102     </group>
2103   </table>
2104
2105   <table name="Flow_Table" title="OpenFlow table configuration">
2106     <p>Configuration for a particular OpenFlow table.</p>
2107
2108     <column name="name">
2109       The table's name.  Set this column to change the name that controllers
2110       will receive when they request table statistics, e.g. <code>ovs-ofctl
2111       dump-tables</code>.  The name does not affect switch behavior.
2112     </column>
2113
2114     <column name="flow_limit">
2115       If set, limits the number of flows that may be added to the table.  Open
2116       vSwitch may limit the number of flows in a table for other reasons,
2117       e.g. due to hardware limitations or for resource availability or
2118       performance reasons.
2119     </column>
2120
2121     <column name="overflow_policy">
2122       <p>
2123         Controls the switch's behavior when an OpenFlow flow table modification
2124         request would add flows in excess of <ref column="flow_limit"/>.  The
2125         supported values are:
2126       </p>
2127
2128       <dl>
2129         <dt><code>refuse</code></dt>
2130         <dd>
2131           Refuse to add the flow or flows.  This is also the default policy
2132           when <ref column="overflow_policy"/> is unset.
2133         </dd>
2134
2135         <dt><code>evict</code></dt>
2136         <dd>
2137           Delete the flow that will expire soonest.  See <ref column="groups"/>
2138           for details.
2139         </dd>
2140       </dl>
2141     </column>
2142
2143     <column name="groups">
2144       <p>
2145         When <ref column="overflow_policy"/> is <code>evict</code>, this
2146         controls how flows are chosen for eviction when the flow table would
2147         otherwise exceed <ref column="flow_limit"/> flows.  Its value is a set
2148         of NXM fields or sub-fields, each of which takes one of the forms
2149         <code><var>field</var>[]</code> or
2150         <code><var>field</var>[<var>start</var>..<var>end</var>]</code>,
2151         e.g. <code>NXM_OF_IN_PORT[]</code>.  Please see
2152         <code>nicira-ext.h</code> for a complete list of NXM field names.
2153       </p>
2154
2155       <p>
2156         When a flow must be evicted due to overflow, the flow to evict is
2157         chosen through an approximation of the following algorithm:
2158       </p>
2159
2160       <ol>
2161         <li>
2162           Divide the flows in the table into groups based on the values of the
2163           specified fields or subfields, so that all of the flows in a given
2164           group have the same values for those fields.  If a flow does not
2165           specify a given field, that field's value is treated as 0.
2166         </li>
2167
2168         <li>
2169           Consider the flows in the largest group, that is, the group that
2170           contains the greatest number of flows.  If two or more groups all
2171           have the same largest number of flows, consider the flows in all of
2172           those groups.
2173         </li>
2174
2175         <li>
2176           Among the flows under consideration, choose the flow that expires
2177           soonest for eviction.
2178         </li>
2179       </ol>
2180
2181       <p>
2182         The eviction process only considers flows that have an idle timeout or
2183         a hard timeout.  That is, eviction never deletes permanent flows.
2184         (Permanent flows do count against <ref column="flow_limit"/>.)
2185       </p>
2186
2187       <p>
2188         Open vSwitch ignores any invalid or unknown field specifications.
2189       </p>
2190
2191       <p>
2192         When <ref column="overflow_policy"/> is not <code>evict</code>, this
2193         column has no effect.
2194       </p>
2195     </column>
2196   </table>
2197
2198   <table name="QoS" title="Quality of Service configuration">
2199     <p>Quality of Service (QoS) configuration for each Port that
2200     references it.</p>
2201
2202     <column name="type">
2203       <p>The type of QoS to implement. The currently defined types are
2204       listed below:</p>
2205       <dl>
2206         <dt><code>linux-htb</code></dt>
2207         <dd>
2208           Linux ``hierarchy token bucket'' classifier.  See tc-htb(8) (also at
2209           <code>http://linux.die.net/man/8/tc-htb</code>) and the HTB manual
2210           (<code>http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm</code>)
2211           for information on how this classifier works and how to configure it.
2212         </dd>
2213       </dl>
2214       <dl>
2215         <dt><code>linux-hfsc</code></dt>
2216         <dd>
2217           Linux "Hierarchical Fair Service Curve" classifier.
2218           See <code>http://linux-ip.net/articles/hfsc.en/</code> for
2219           information on how this classifier works.
2220         </dd>
2221       </dl>
2222     </column>
2223
2224     <column name="queues">
2225       <p>A map from queue numbers to <ref table="Queue"/> records.  The
2226       supported range of queue numbers depend on <ref column="type"/>.  The
2227       queue numbers are the same as the <code>queue_id</code> used in
2228       OpenFlow in <code>struct ofp_action_enqueue</code> and other
2229       structures.</p>
2230
2231       <p>
2232         Queue 0 is the ``default queue.''  It is used by OpenFlow output
2233         actions when no specific queue has been set.  When no configuration for
2234         queue 0 is present, it is automatically configured as if a <ref
2235         table="Queue"/> record with empty <ref table="Queue" column="dscp"/>
2236         and <ref table="Queue" column="other_config"/> columns had been
2237         specified.
2238         (Before version 1.6, Open vSwitch would leave queue 0 unconfigured in
2239         this case.  With some queuing disciplines, this dropped all packets
2240         destined for the default queue.)
2241       </p>
2242     </column>
2243
2244     <group title="Configuration for linux-htb and linux-hfsc">
2245       <p>
2246         The <code>linux-htb</code> and <code>linux-hfsc</code> classes support
2247         the following key-value pair:
2248       </p>
2249
2250       <column name="other_config" key="max-rate" type='{"type": "integer"}'>
2251         Maximum rate shared by all queued traffic, in bit/s.  Optional.  If not
2252         specified, for physical interfaces, the default is the link rate.  For
2253         other interfaces or if the link rate cannot be determined, the default
2254         is currently 100 Mbps.
2255       </column>
2256     </group>
2257
2258     <group title="Common Columns">
2259       The overall purpose of these columns is described under <code>Common
2260       Columns</code> at the beginning of this document.
2261
2262       <column name="other_config"/>
2263       <column name="external_ids"/>
2264     </group>
2265   </table>
2266
2267   <table name="Queue" title="QoS output queue.">
2268     <p>A configuration for a port output queue, used in configuring Quality of
2269     Service (QoS) features.  May be referenced by <ref column="queues"
2270     table="QoS"/> column in <ref table="QoS"/> table.</p>
2271
2272     <column name="dscp">
2273       If set, Open vSwitch will mark all traffic egressing this
2274       <ref table="Queue"/> with the given DSCP bits.  Traffic egressing the
2275       default <ref table="Queue"/> is only marked if it was explicitly selected
2276       as the <ref table="Queue"/> at the time the packet was output.  If unset,
2277       the DSCP bits of traffic egressing this <ref table="Queue"/> will remain
2278       unchanged.
2279     </column>
2280
2281     <group title="Configuration for linux-htb QoS">
2282       <p>
2283         <ref table="QoS"/> <ref table="QoS" column="type"/>
2284         <code>linux-htb</code> may use <code>queue_id</code>s less than 61440.
2285         It has the following key-value pairs defined.
2286       </p>
2287
2288       <column name="other_config" key="min-rate"
2289               type='{"type": "integer", "minInteger": 1}'>
2290         Minimum guaranteed bandwidth, in bit/s.
2291       </column>
2292
2293       <column name="other_config" key="max-rate"
2294               type='{"type": "integer", "minInteger": 1}'>
2295         Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
2296         queue's rate will not be allowed to exceed the specified value, even
2297         if excess bandwidth is available.  If unspecified, defaults to no
2298         limit.
2299       </column>
2300
2301       <column name="other_config" key="burst"
2302               type='{"type": "integer", "minInteger": 1}'>
2303         Burst size, in bits.  This is the maximum amount of ``credits'' that a
2304         queue can accumulate while it is idle.  Optional.  Details of the
2305         <code>linux-htb</code> implementation require a minimum burst size, so
2306         a too-small <code>burst</code> will be silently ignored.
2307       </column>
2308
2309       <column name="other_config" key="priority"
2310               type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
2311         A queue with a smaller <code>priority</code> will receive all the
2312         excess bandwidth that it can use before a queue with a larger value
2313         receives any.  Specific priority values are unimportant; only relative
2314         ordering matters.  Defaults to 0 if unspecified.
2315       </column>
2316     </group>
2317
2318     <group title="Configuration for linux-hfsc QoS">
2319       <p>
2320         <ref table="QoS"/> <ref table="QoS" column="type"/>
2321         <code>linux-hfsc</code> may use <code>queue_id</code>s less than 61440.
2322         It has the following key-value pairs defined.
2323       </p>
2324
2325       <column name="other_config" key="min-rate"
2326               type='{"type": "integer", "minInteger": 1}'>
2327         Minimum guaranteed bandwidth, in bit/s.
2328       </column>
2329
2330       <column name="other_config" key="max-rate"
2331               type='{"type": "integer", "minInteger": 1}'>
2332         Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
2333         queue's rate will not be allowed to exceed the specified value, even if
2334         excess bandwidth is available.  If unspecified, defaults to no
2335         limit.
2336       </column>
2337     </group>
2338
2339     <group title="Common Columns">
2340       The overall purpose of these columns is described under <code>Common
2341       Columns</code> at the beginning of this document.
2342
2343       <column name="other_config"/>
2344       <column name="external_ids"/>
2345     </group>
2346   </table>
2347
2348   <table name="Mirror" title="Port mirroring.">
2349     <p>A port mirror within a <ref table="Bridge"/>.</p>
2350     <p>A port mirror configures a bridge to send selected frames to special
2351     ``mirrored'' ports, in addition to their normal destinations.  Mirroring
2352     traffic may also be referred to as SPAN or RSPAN, depending on how
2353     the mirrored traffic is sent.</p>
2354
2355     <column name="name">
2356       Arbitrary identifier for the <ref table="Mirror"/>.
2357     </column>
2358
2359     <group title="Selecting Packets for Mirroring">
2360       <p>
2361         To be selected for mirroring, a given packet must enter or leave the
2362         bridge through a selected port and it must also be in one of the
2363         selected VLANs.
2364       </p>
2365
2366       <column name="select_all">
2367         If true, every packet arriving or departing on any port is
2368         selected for mirroring.
2369       </column>
2370
2371       <column name="select_dst_port">
2372         Ports on which departing packets are selected for mirroring.
2373       </column>
2374
2375       <column name="select_src_port">
2376         Ports on which arriving packets are selected for mirroring.
2377       </column>
2378
2379       <column name="select_vlan">
2380         VLANs on which packets are selected for mirroring.  An empty set
2381         selects packets on all VLANs.
2382       </column>
2383     </group>
2384
2385     <group title="Mirroring Destination Configuration">
2386       <p>
2387         These columns are mutually exclusive.  Exactly one of them must be
2388         nonempty.
2389       </p>
2390
2391       <column name="output_port">
2392         <p>Output port for selected packets, if nonempty.</p>
2393         <p>Specifying a port for mirror output reserves that port exclusively
2394         for mirroring.  No frames other than those selected for mirroring
2395         via this column
2396         will be forwarded to the port, and any frames received on the port
2397         will be discarded.</p>
2398         <p>
2399           The output port may be any kind of port supported by Open vSwitch.
2400           It may be, for example, a physical port (sometimes called SPAN) or a
2401           GRE tunnel.
2402         </p>
2403       </column>
2404
2405       <column name="output_vlan">
2406         <p>Output VLAN for selected packets, if nonempty.</p>
2407         <p>The frames will be sent out all ports that trunk
2408         <ref column="output_vlan"/>, as well as any ports with implicit VLAN
2409         <ref column="output_vlan"/>.  When a mirrored frame is sent out a
2410         trunk port, the frame's VLAN tag will be set to
2411         <ref column="output_vlan"/>, replacing any existing tag; when it is
2412         sent out an implicit VLAN port, the frame will not be tagged.  This
2413         type of mirroring is sometimes called RSPAN.</p>
2414         <p>
2415           See the documentation for
2416           <ref column="other_config" key="forward-bpdu"/> in the
2417           <ref table="Interface"/> table for a list of destination MAC
2418           addresses which will not be mirrored to a VLAN to avoid confusing
2419           switches that interpret the protocols that they represent.
2420         </p>
2421         <p><em>Please note:</em> Mirroring to a VLAN can disrupt a network that
2422         contains unmanaged switches.  Consider an unmanaged physical switch
2423         with two ports: port 1, connected to an end host, and port 2,
2424         connected to an Open vSwitch configured to mirror received packets
2425         into VLAN 123 on port 2.  Suppose that the end host sends a packet on
2426         port 1 that the physical switch forwards to port 2.  The Open vSwitch
2427         forwards this packet to its destination and then reflects it back on
2428         port 2 in VLAN 123.  This reflected packet causes the unmanaged
2429         physical switch to replace the MAC learning table entry, which
2430         correctly pointed to port 1, with one that incorrectly points to port
2431         2.  Afterward, the physical switch will direct packets destined for
2432         the end host to the Open vSwitch on port 2, instead of to the end
2433         host on port 1, disrupting connectivity.  If mirroring to a VLAN is
2434         desired in this scenario, then the physical switch must be replaced
2435         by one that learns Ethernet addresses on a per-VLAN basis.  In
2436         addition, learning should be disabled on the VLAN containing mirrored
2437         traffic. If this is not done then intermediate switches will learn
2438         the MAC address of each end host from the mirrored traffic.  If
2439         packets being sent to that end host are also mirrored, then they will
2440         be dropped since the switch will attempt to send them out the input
2441         port. Disabling learning for the VLAN will cause the switch to
2442         correctly send the packet out all ports configured for that VLAN.  If
2443         Open vSwitch is being used as an intermediate switch, learning can be
2444         disabled by adding the mirrored VLAN to <ref column="flood_vlans"/>
2445         in the appropriate <ref table="Bridge"/> table or tables.</p>
2446         <p>
2447           Mirroring to a GRE tunnel has fewer caveats than mirroring to a
2448           VLAN and should generally be preferred.
2449         </p>
2450       </column>
2451     </group>
2452
2453     <group title="Statistics: Mirror counters">
2454       <p>
2455         Key-value pairs that report mirror statistics.
2456       </p>
2457       <column name="statistics" key="tx_packets">
2458         Number of packets transmitted through this mirror.
2459       </column>
2460       <column name="statistics" key="tx_bytes">
2461         Number of bytes transmitted through this mirror.
2462       </column>
2463     </group>
2464
2465     <group title="Common Columns">
2466       The overall purpose of these columns is described under <code>Common
2467       Columns</code> at the beginning of this document.
2468
2469       <column name="external_ids"/>
2470     </group>
2471   </table>
2472
2473   <table name="Controller" title="OpenFlow controller configuration.">
2474     <p>An OpenFlow controller.</p>
2475
2476     <p>
2477       Open vSwitch supports two kinds of OpenFlow controllers:
2478     </p>
2479
2480     <dl>
2481       <dt>Primary controllers</dt>
2482       <dd>
2483         <p>
2484           This is the kind of controller envisioned by the OpenFlow 1.0
2485           specification.  Usually, a primary controller implements a network
2486           policy by taking charge of the switch's flow table.
2487         </p>
2488
2489         <p>
2490           Open vSwitch initiates and maintains persistent connections to
2491           primary controllers, retrying the connection each time it fails or
2492           drops.  The <ref table="Bridge" column="fail_mode"/> column in the
2493           <ref table="Bridge"/> table applies to primary controllers.
2494         </p>
2495
2496         <p>
2497           Open vSwitch permits a bridge to have any number of primary
2498           controllers.  When multiple controllers are configured, Open
2499           vSwitch connects to all of them simultaneously.  Because
2500           OpenFlow 1.0 does not specify how multiple controllers
2501           coordinate in interacting with a single switch, more than
2502           one primary controller should be specified only if the
2503           controllers are themselves designed to coordinate with each
2504           other.  (The Nicira-defined <code>NXT_ROLE</code> OpenFlow
2505           vendor extension may be useful for this.)
2506         </p>
2507       </dd>
2508       <dt>Service controllers</dt>
2509       <dd>
2510         <p>
2511           These kinds of OpenFlow controller connections are intended for
2512           occasional support and maintenance use, e.g. with
2513           <code>ovs-ofctl</code>.  Usually a service controller connects only
2514           briefly to inspect or modify some of a switch's state.
2515         </p>
2516
2517         <p>
2518           Open vSwitch listens for incoming connections from service
2519           controllers.  The service controllers initiate and, if necessary,
2520           maintain the connections from their end.  The <ref table="Bridge"
2521           column="fail_mode"/> column in the <ref table="Bridge"/> table does
2522           not apply to service controllers.
2523         </p>
2524
2525         <p>
2526           Open vSwitch supports configuring any number of service controllers.
2527         </p>
2528       </dd>
2529     </dl>
2530
2531     <p>
2532       The <ref column="target"/> determines the type of controller.
2533     </p>
2534
2535     <group title="Core Features">
2536       <column name="target">
2537         <p>Connection method for controller.</p>
2538         <p>
2539           The following connection methods are currently supported for primary
2540           controllers:
2541         </p>
2542         <dl>
2543           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2544           <dd>
2545             <p>The specified SSL <var>port</var> (default: 6633) on the host at
2546             the given <var>ip</var>, which must be expressed as an IP address
2547             (not a DNS name).  The <ref table="Open_vSwitch" column="ssl"/>
2548             column in the <ref table="Open_vSwitch"/> table must point to a
2549             valid SSL configuration when this form is used.</p>
2550             <p>SSL support is an optional feature that is not always built as
2551             part of Open vSwitch.</p>
2552           </dd>
2553           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2554           <dd>The specified TCP <var>port</var> (default: 6633) on the host at
2555           the given <var>ip</var>, which must be expressed as an IP address
2556           (not a DNS name).</dd>
2557         </dl>
2558         <p>
2559           The following connection methods are currently supported for service
2560           controllers:
2561         </p>
2562         <dl>
2563           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2564           <dd>
2565             <p>
2566               Listens for SSL connections on the specified TCP <var>port</var>
2567               (default: 6633).  If <var>ip</var>, which must be expressed as an
2568               IP address (not a DNS name), is specified, then connections are
2569               restricted to the specified local IP address.
2570             </p>
2571             <p>
2572               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
2573               table="Open_vSwitch"/> table must point to a valid SSL
2574               configuration when this form is used.
2575             </p>
2576             <p>SSL support is an optional feature that is not always built as
2577             part of Open vSwitch.</p>
2578           </dd>
2579           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2580           <dd>
2581             Listens for connections on the specified TCP <var>port</var>
2582             (default: 6633).  If <var>ip</var>, which must be expressed as an
2583             IP address (not a DNS name), is specified, then connections are
2584             restricted to the specified local IP address.
2585           </dd>
2586         </dl>
2587         <p>When multiple controllers are configured for a single bridge, the
2588         <ref column="target"/> values must be unique.  Duplicate
2589         <ref column="target"/> values yield unspecified results.</p>
2590       </column>
2591
2592       <column name="connection_mode">
2593         <p>If it is specified, this setting must be one of the following
2594         strings that describes how Open vSwitch contacts this OpenFlow
2595         controller over the network:</p>
2596
2597         <dl>
2598           <dt><code>in-band</code></dt>
2599           <dd>In this mode, this controller's OpenFlow traffic travels over the
2600           bridge associated with the controller.  With this setting, Open
2601           vSwitch allows traffic to and from the controller regardless of the
2602           contents of the OpenFlow flow table.  (Otherwise, Open vSwitch
2603           would never be able to connect to the controller, because it did
2604           not have a flow to enable it.)  This is the most common connection
2605           mode because it is not necessary to maintain two independent
2606           networks.</dd>
2607           <dt><code>out-of-band</code></dt>
2608           <dd>In this mode, OpenFlow traffic uses a control network separate
2609           from the bridge associated with this controller, that is, the
2610           bridge does not use any of its own network devices to communicate
2611           with the controller.  The control network must be configured
2612           separately, before or after <code>ovs-vswitchd</code> is started.
2613           </dd>
2614         </dl>
2615
2616         <p>If not specified, the default is implementation-specific.</p>
2617       </column>
2618     </group>
2619
2620     <group title="Controller Failure Detection and Handling">
2621       <column name="max_backoff">
2622         Maximum number of milliseconds to wait between connection attempts.
2623         Default is implementation-specific.
2624       </column>
2625
2626       <column name="inactivity_probe">
2627         Maximum number of milliseconds of idle time on connection to
2628         controller before sending an inactivity probe message.  If Open
2629         vSwitch does not communicate with the controller for the specified
2630         number of seconds, it will send a probe.  If a response is not
2631         received for the same additional amount of time, Open vSwitch
2632         assumes the connection has been broken and attempts to reconnect.
2633         Default is implementation-specific.  A value of 0 disables
2634         inactivity probes.
2635       </column>
2636     </group>
2637
2638     <group title="Asynchronous Message Configuration">
2639       <p>
2640         OpenFlow switches send certain messages to controllers spontanenously,
2641         that is, not in response to any request from the controller.  These
2642         messages are called ``asynchronous messages.''  These columns allow
2643         asynchronous messages to be limited or disabled to ensure the best use
2644         of network resources.
2645       </p>
2646
2647       <column name="enable_async_messages">
2648         The OpenFlow protocol enables asynchronous messages at time of
2649         connection establishment, which means that a controller can receive
2650         asynchronous messages, potentially many of them, even if it turns them
2651         off immediately after connecting.  Set this column to
2652         <code>false</code> to change Open vSwitch behavior to disable, by
2653         default, all asynchronous messages.  The controller can use the
2654         <code>NXT_SET_ASYNC_CONFIG</code> Nicira extension to OpenFlow to turn
2655         on any messages that it does want to receive, if any.
2656       </column>
2657
2658       <column name="controller_rate_limit">
2659         <p>
2660           The maximum rate at which the switch will forward packets to the
2661           OpenFlow controller, in packets per second.  This feature prevents a
2662           single bridge from overwhelming the controller.  If not specified,
2663           the default is implementation-specific.
2664         </p>
2665
2666         <p>
2667           In addition, when a high rate triggers rate-limiting, Open vSwitch
2668           queues controller packets for each port and transmits them to the
2669           controller at the configured rate.  The <ref
2670           column="controller_burst_limit"/> value limits the number of queued
2671           packets.  Ports on a bridge share the packet queue fairly.
2672         </p>
2673
2674         <p>
2675           Open vSwitch maintains two such packet rate-limiters per bridge: one
2676           for packets sent up to the controller because they do not correspond
2677           to any flow, and the other for packets sent up to the controller by
2678           request through flow actions. When both rate-limiters are filled with
2679           packets, the actual rate that packets are sent to the controller is
2680           up to twice the specified rate.
2681         </p>
2682       </column>
2683
2684       <column name="controller_burst_limit">
2685         In conjunction with <ref column="controller_rate_limit"/>,
2686         the maximum number of unused packet credits that the bridge will
2687         allow to accumulate, in packets.  If not specified, the default
2688         is implementation-specific.
2689       </column>
2690     </group>
2691
2692     <group title="Additional In-Band Configuration">
2693       <p>These values are considered only in in-band control mode (see
2694       <ref column="connection_mode"/>).</p>
2695
2696       <p>When multiple controllers are configured on a single bridge, there
2697       should be only one set of unique values in these columns.  If different
2698       values are set for these columns in different controllers, the effect
2699       is unspecified.</p>
2700
2701       <column name="local_ip">
2702         The IP address to configure on the local port,
2703         e.g. <code>192.168.0.123</code>.  If this value is unset, then
2704         <ref column="local_netmask"/> and <ref column="local_gateway"/> are
2705         ignored.
2706       </column>
2707
2708       <column name="local_netmask">
2709         The IP netmask to configure on the local port,
2710         e.g. <code>255.255.255.0</code>.  If <ref column="local_ip"/> is set
2711         but this value is unset, then the default is chosen based on whether
2712         the IP address is class A, B, or C.
2713       </column>
2714
2715       <column name="local_gateway">
2716         The IP address of the gateway to configure on the local port, as a
2717         string, e.g. <code>192.168.0.1</code>.  Leave this column unset if
2718         this network has no gateway.
2719       </column>
2720     </group>
2721
2722     <group title="Controller Status">
2723       <column name="is_connected">
2724         <code>true</code> if currently connected to this controller,
2725         <code>false</code> otherwise.
2726       </column>
2727
2728       <column name="role"
2729               type='{"type": "string", "enum": ["set", ["other", "master", "slave"]]}'>
2730         <p>The level of authority this controller has on the associated
2731         bridge. Possible values are:</p>
2732         <dl>
2733           <dt><code>other</code></dt>
2734           <dd>Allows the controller access to all OpenFlow features.</dd>
2735           <dt><code>master</code></dt>
2736           <dd>Equivalent to <code>other</code>, except that there may be at
2737           most one master controller at a time.  When a controller configures
2738           itself as <code>master</code>, any existing master is demoted to
2739           the <code>slave</code>role.</dd>
2740           <dt><code>slave</code></dt>
2741           <dd>Allows the controller read-only access to OpenFlow features.
2742           Attempts to modify the flow table will be rejected with an
2743           error.  Slave controllers do not receive OFPT_PACKET_IN or
2744           OFPT_FLOW_REMOVED messages, but they do receive OFPT_PORT_STATUS
2745           messages.</dd>
2746         </dl>
2747       </column>
2748
2749       <column name="status" key="last_error">
2750         A human-readable description of the last error on the connection
2751         to the controller; i.e. <code>strerror(errno)</code>.  This key
2752         will exist only if an error has occurred.
2753       </column>
2754
2755       <column name="status" key="state"
2756               type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
2757         <p>
2758           The state of the connection to the controller:
2759         </p>
2760         <dl>
2761           <dt><code>VOID</code></dt>
2762           <dd>Connection is disabled.</dd>
2763
2764           <dt><code>BACKOFF</code></dt>
2765           <dd>Attempting to reconnect at an increasing period.</dd>
2766
2767           <dt><code>CONNECTING</code></dt>
2768           <dd>Attempting to connect.</dd>
2769
2770           <dt><code>ACTIVE</code></dt>
2771           <dd>Connected, remote host responsive.</dd>
2772
2773           <dt><code>IDLE</code></dt>
2774           <dd>Connection is idle.  Waiting for response to keep-alive.</dd>
2775         </dl>
2776         <p>
2777           These values may change in the future.  They are provided only for
2778           human consumption.
2779         </p>
2780       </column>
2781
2782       <column name="status" key="sec_since_connect"
2783               type='{"type": "integer", "minInteger": 0}'>
2784         The amount of time since this controller last successfully connected to
2785         the switch (in seconds).  Value is empty if controller has never
2786         successfully connected.
2787       </column>
2788
2789       <column name="status" key="sec_since_disconnect"
2790               type='{"type": "integer", "minInteger": 1}'>
2791         The amount of time since this controller last disconnected from
2792         the switch (in seconds). Value is empty if controller has never
2793         disconnected.
2794       </column>
2795     </group>
2796
2797     <group title="Connection Parameters">
2798       <p>
2799         Additional configuration for a connection between the controller
2800         and the Open vSwitch.
2801       </p>
2802
2803       <column name="other_config" key="dscp"
2804                 type='{"type": "integer"}'>
2805         The Differentiated Service Code Point (DSCP) is specified using 6 bits
2806         in the Type of Service (TOS) field in the IP header. DSCP provides a
2807         mechanism to classify the network traffic and provide Quality of
2808         Service (QoS) on IP networks.
2809
2810         The DSCP value specified here is used when establishing the connection
2811         between the controller and the Open vSwitch.  If no value is specified,
2812         a default value of 48 is chosen.  Valid DSCP values must be in the
2813         range 0 to 63.
2814       </column>
2815     </group>
2816
2817
2818     <group title="Common Columns">
2819       The overall purpose of these columns is described under <code>Common
2820       Columns</code> at the beginning of this document.
2821
2822       <column name="external_ids"/>
2823       <column name="other_config"/>
2824     </group>
2825   </table>
2826
2827   <table name="Manager" title="OVSDB management connection.">
2828     <p>
2829       Configuration for a database connection to an Open vSwitch database
2830       (OVSDB) client.
2831     </p>
2832
2833     <p>
2834       This table primarily configures the Open vSwitch database
2835       (<code>ovsdb-server</code>), not the Open vSwitch switch
2836       (<code>ovs-vswitchd</code>).  The switch does read the table to determine
2837       what connections should be treated as in-band.
2838     </p>
2839
2840     <p>
2841       The Open vSwitch database server can initiate and maintain active
2842       connections to remote clients.  It can also listen for database
2843       connections.
2844     </p>
2845
2846     <group title="Core Features">
2847       <column name="target">
2848         <p>Connection method for managers.</p>
2849         <p>
2850           The following connection methods are currently supported:
2851         </p>
2852         <dl>
2853           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2854           <dd>
2855             <p>
2856               The specified SSL <var>port</var> (default: 6632) on the host at
2857               the given <var>ip</var>, which must be expressed as an IP address
2858               (not a DNS name).  The <ref table="Open_vSwitch" column="ssl"/>
2859               column in the <ref table="Open_vSwitch"/> table must point to a
2860               valid SSL configuration when this form is used.
2861             </p>
2862             <p>
2863               SSL support is an optional feature that is not always built as
2864               part of Open vSwitch.
2865             </p>
2866           </dd>
2867
2868           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2869           <dd>
2870             The specified TCP <var>port</var> (default: 6632) on the host at
2871             the given <var>ip</var>, which must be expressed as an IP address
2872             (not a DNS name).
2873           </dd>
2874           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2875           <dd>
2876             <p>
2877               Listens for SSL connections on the specified TCP <var>port</var>
2878               (default: 6632).  If <var>ip</var>, which must be expressed as an
2879               IP address (not a DNS name), is specified, then connections are
2880               restricted to the specified local IP address.
2881             </p>
2882             <p>
2883               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
2884               table="Open_vSwitch"/> table must point to a valid SSL
2885               configuration when this form is used.
2886             </p>
2887             <p>
2888               SSL support is an optional feature that is not always built as
2889               part of Open vSwitch.
2890             </p>
2891           </dd>
2892           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2893           <dd>
2894             Listens for connections on the specified TCP <var>port</var>
2895             (default: 6632).  If <var>ip</var>, which must be expressed as an
2896             IP address (not a DNS name), is specified, then connections are
2897             restricted to the specified local IP address.
2898           </dd>
2899         </dl>
2900         <p>When multiple managers are configured, the <ref column="target"/>
2901         values must be unique.  Duplicate <ref column="target"/> values yield
2902         unspecified results.</p>
2903       </column>
2904
2905       <column name="connection_mode">
2906         <p>
2907           If it is specified, this setting must be one of the following strings
2908           that describes how Open vSwitch contacts this OVSDB client over the
2909           network:
2910         </p>
2911
2912         <dl>
2913           <dt><code>in-band</code></dt>
2914           <dd>
2915             In this mode, this connection's traffic travels over a bridge
2916             managed by Open vSwitch.  With this setting, Open vSwitch allows
2917             traffic to and from the client regardless of the contents of the
2918             OpenFlow flow table.  (Otherwise, Open vSwitch would never be able
2919             to connect to the client, because it did not have a flow to enable
2920             it.)  This is the most common connection mode because it is not
2921             necessary to maintain two independent networks.
2922           </dd>
2923           <dt><code>out-of-band</code></dt>
2924           <dd>
2925             In this mode, the client's traffic uses a control network separate
2926             from that managed by Open vSwitch, that is, Open vSwitch does not
2927             use any of its own network devices to communicate with the client.
2928             The control network must be configured separately, before or after
2929             <code>ovs-vswitchd</code> is started.
2930           </dd>
2931         </dl>
2932
2933         <p>
2934           If not specified, the default is implementation-specific.
2935         </p>
2936       </column>
2937     </group>
2938
2939     <group title="Client Failure Detection and Handling">
2940       <column name="max_backoff">
2941         Maximum number of milliseconds to wait between connection attempts.
2942         Default is implementation-specific.
2943       </column>
2944
2945       <column name="inactivity_probe">
2946         Maximum number of milliseconds of idle time on connection to the client
2947         before sending an inactivity probe message.  If Open vSwitch does not
2948         communicate with the client for the specified number of seconds, it
2949         will send a probe.  If a response is not received for the same
2950         additional amount of time, Open vSwitch assumes the connection has been
2951         broken and attempts to reconnect.  Default is implementation-specific.
2952         A value of 0 disables inactivity probes.
2953       </column>
2954     </group>
2955
2956     <group title="Status">
2957       <column name="is_connected">
2958         <code>true</code> if currently connected to this manager,
2959         <code>false</code> otherwise.
2960       </column>
2961
2962       <column name="status" key="last_error">
2963         A human-readable description of the last error on the connection
2964         to the manager; i.e. <code>strerror(errno)</code>.  This key
2965         will exist only if an error has occurred.
2966       </column>
2967
2968       <column name="status" key="state"
2969               type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
2970         <p>
2971           The state of the connection to the manager:
2972         </p>
2973         <dl>
2974           <dt><code>VOID</code></dt>
2975           <dd>Connection is disabled.</dd>
2976
2977           <dt><code>BACKOFF</code></dt>
2978           <dd>Attempting to reconnect at an increasing period.</dd>
2979
2980           <dt><code>CONNECTING</code></dt>
2981           <dd>Attempting to connect.</dd>
2982
2983           <dt><code>ACTIVE</code></dt>
2984           <dd>Connected, remote host responsive.</dd>
2985
2986           <dt><code>IDLE</code></dt>
2987           <dd>Connection is idle.  Waiting for response to keep-alive.</dd>
2988         </dl>
2989         <p>
2990           These values may change in the future.  They are provided only for
2991           human consumption.
2992         </p>
2993       </column>
2994
2995       <column name="status" key="sec_since_connect"
2996               type='{"type": "integer", "minInteger": 0}'>
2997         The amount of time since this manager last successfully connected
2998         to the database (in seconds). Value is empty if manager has never
2999         successfully connected.
3000       </column>
3001
3002       <column name="status" key="sec_since_disconnect"
3003               type='{"type": "integer", "minInteger": 0}'>
3004         The amount of time since this manager last disconnected from the
3005         database (in seconds). Value is empty if manager has never
3006         disconnected.
3007       </column>
3008
3009       <column name="status" key="locks_held">
3010         Space-separated list of the names of OVSDB locks that the connection
3011         holds.  Omitted if the connection does not hold any locks.
3012       </column>
3013
3014       <column name="status" key="locks_waiting">
3015         Space-separated list of the names of OVSDB locks that the connection is
3016         currently waiting to acquire.  Omitted if the connection is not waiting
3017         for any locks.
3018       </column>
3019
3020       <column name="status" key="locks_lost">
3021         Space-separated list of the names of OVSDB locks that the connection
3022         has had stolen by another OVSDB client.  Omitted if no locks have been
3023         stolen from this connection.
3024       </column>
3025
3026       <column name="status" key="n_connections"
3027               type='{"type": "integer", "minInteger": 2}'>
3028         <p>
3029           When <ref column="target"/> specifies a connection method that
3030           listens for inbound connections (e.g. <code>ptcp:</code> or
3031           <code>pssl:</code>) and more than one connection is actually active,
3032           the value is the number of active connections.  Otherwise, this
3033           key-value pair is omitted.
3034         </p>
3035         <p>
3036           When multiple connections are active, status columns and key-value
3037           pairs (other than this one) report the status of one arbitrarily
3038           chosen connection.
3039         </p>
3040       </column>
3041     </group>
3042
3043     <group title="Connection Parameters">
3044       <p>
3045         Additional configuration for a connection between the manager
3046         and the Open vSwitch Database.
3047       </p>
3048
3049       <column name="other_config" key="dscp"
3050                 type='{"type": "integer"}'>
3051         The Differentiated Service Code Point (DSCP) is specified using 6 bits
3052         in the Type of Service (TOS) field in the IP header. DSCP provides a
3053         mechanism to classify the network traffic and provide Quality of
3054         Service (QoS) on IP networks.
3055
3056         The DSCP value specified here is used when establishing the connection
3057         between the manager and the Open vSwitch.  If no value is specified, a
3058         default value of 48 is chosen.  Valid DSCP values must be in the range
3059         0 to 63.
3060       </column>
3061     </group>
3062
3063     <group title="Common Columns">
3064       The overall purpose of these columns is described under <code>Common
3065       Columns</code> at the beginning of this document.
3066
3067       <column name="external_ids"/>
3068       <column name="other_config"/>
3069     </group>
3070   </table>
3071
3072   <table name="NetFlow">
3073     A NetFlow target.  NetFlow is a protocol that exports a number of
3074     details about terminating IP flows, such as the principals involved
3075     and duration.
3076
3077     <column name="targets">
3078       NetFlow targets in the form
3079       <code><var>ip</var>:<var>port</var></code>.  The <var>ip</var>
3080       must be specified numerically, not as a DNS name.
3081     </column>
3082
3083     <column name="engine_id">
3084       Engine ID to use in NetFlow messages.  Defaults to datapath index
3085       if not specified.
3086     </column>
3087
3088     <column name="engine_type">
3089       Engine type to use in NetFlow messages.  Defaults to datapath
3090       index if not specified.
3091     </column>
3092
3093     <column name="active_timeout">
3094       The interval at which NetFlow records are sent for flows that are
3095       still active, in seconds.  A value of <code>0</code> requests the
3096       default timeout (currently 600 seconds); a value of <code>-1</code>
3097       disables active timeouts.
3098     </column>
3099
3100     <column name="add_id_to_interface">
3101       <p>If this column's value is <code>false</code>, the ingress and egress
3102       interface fields of NetFlow flow records are derived from OpenFlow port
3103       numbers.  When it is <code>true</code>, the 7 most significant bits of
3104       these fields will be replaced by the least significant 7 bits of the
3105       engine id.  This is useful because many NetFlow collectors do not
3106       expect multiple switches to be sending messages from the same host, so
3107       they do not store the engine information which could be used to
3108       disambiguate the traffic.</p>
3109       <p>When this option is enabled, a maximum of 508 ports are supported.</p>
3110     </column>
3111
3112     <group title="Common Columns">
3113       The overall purpose of these columns is described under <code>Common
3114       Columns</code> at the beginning of this document.
3115
3116       <column name="external_ids"/>
3117     </group>
3118   </table>
3119
3120   <table name="SSL">
3121     SSL configuration for an Open_vSwitch.
3122
3123     <column name="private_key">
3124       Name of a PEM file containing the private key used as the switch's
3125       identity for SSL connections to the controller.
3126     </column>
3127
3128     <column name="certificate">
3129       Name of a PEM file containing a certificate, signed by the
3130       certificate authority (CA) used by the controller and manager,
3131       that certifies the switch's private key, identifying a trustworthy
3132       switch.
3133     </column>
3134
3135     <column name="ca_cert">
3136       Name of a PEM file containing the CA certificate used to verify
3137       that the switch is connected to a trustworthy controller.
3138     </column>
3139
3140     <column name="bootstrap_ca_cert">
3141       If set to <code>true</code>, then Open vSwitch will attempt to
3142       obtain the CA certificate from the controller on its first SSL
3143       connection and save it to the named PEM file. If it is successful,
3144       it will immediately drop the connection and reconnect, and from then
3145       on all SSL connections must be authenticated by a certificate signed
3146       by the CA certificate thus obtained.  <em>This option exposes the
3147       SSL connection to a man-in-the-middle attack obtaining the initial
3148       CA certificate.</em>  It may still be useful for bootstrapping.
3149     </column>
3150
3151     <group title="Common Columns">
3152       The overall purpose of these columns is described under <code>Common
3153       Columns</code> at the beginning of this document.
3154
3155       <column name="external_ids"/>
3156     </group>
3157   </table>
3158
3159   <table name="sFlow">
3160     <p>An sFlow(R) target.  sFlow is a protocol for remote monitoring
3161     of switches.</p>
3162
3163     <column name="agent">
3164       Name of the network device whose IP address should be reported as the
3165       ``agent address'' to collectors.  If not specified, the agent device is
3166       figured from the first target address and the routing table.  If the
3167       routing table does not contain a route to the target, the IP address
3168       defaults to the <ref table="Controller" column="local_ip"/> in the
3169       collector's <ref table="Controller"/>.  If an agent IP address cannot be
3170       determined any of these ways, sFlow is disabled.
3171     </column>
3172
3173     <column name="header">
3174       Number of bytes of a sampled packet to send to the collector.
3175       If not specified, the default is 128 bytes.
3176     </column>
3177
3178     <column name="polling">
3179       Polling rate in seconds to send port statistics to the collector.
3180       If not specified, defaults to 30 seconds.
3181     </column>
3182
3183     <column name="sampling">
3184       Rate at which packets should be sampled and sent to the collector.
3185       If not specified, defaults to 400, which means one out of 400
3186       packets, on average, will be sent to the collector.
3187     </column>
3188
3189     <column name="targets">
3190       sFlow targets in the form
3191       <code><var>ip</var>:<var>port</var></code>.
3192     </column>
3193
3194     <group title="Common Columns">
3195       The overall purpose of these columns is described under <code>Common
3196       Columns</code> at the beginning of this document.
3197
3198       <column name="external_ids"/>
3199     </group>
3200   </table>
3201
3202 </database>