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