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