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