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