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