vswitchd: Always configure a default queue for QoS.
[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 noted below.
13   </p>
14
15   <table name="Open_vSwitch" title="Open vSwitch configuration.">
16     Configuration for an Open vSwitch daemon.  There must be exactly
17     one record in the <ref table="Open_vSwitch"/> table.
18
19     <group title="Configuration">
20       <column name="bridges">
21         Set of bridges managed by the daemon.
22       </column>
23
24       <column name="ssl">
25         SSL used globally by the daemon.
26       </column>
27
28       <column name="other_config">
29         Key-value pairs for configuring rarely used Open vSwitch features.  The
30         currently defined key-value pairs are:
31         <dl>
32           <dt><code>enable-statistics</code></dt>
33           <dd>
34             Set to <code>true</code> to enable populating the <ref
35             column="statistics"/> column or <code>false</code> (the default)
36             disable populating it.
37           </dd>
38         </dl>
39       </column>
40
41       <column name="external_ids">
42         Key-value pairs for use by external frameworks that integrate
43         with Open vSwitch, rather than by Open vSwitch itself.  System
44         integrators should either use the Open vSwitch development
45         mailing list to coordinate on common key-value definitions, or
46         choose key names that are likely to be unique.  The currently
47         defined common key-value pairs are:
48         <dl>
49           <dt><code>system-id</code></dt>
50           <dd>A unique identifier for the Open vSwitch's physical host.
51             The form of the identifier depends on the type of the host.
52             On a Citrix XenServer, this will likely be the same as
53             <ref column="external_ids" key="xs-system-uuid"/>.</dd>
54           <dt><code>xs-system-uuid</code></dt>
55           <dd>The Citrix XenServer universally unique identifier for the
56             physical host as displayed by <code>xe host-list</code>.</dd>
57         </dl>
58       </column>
59     </group>
60
61     <group title="Status">
62       <column name="next_cfg">
63         Sequence number for client to increment.  When a client modifies
64         any part of the database configuration and wishes to wait for
65         Open vSwitch to finish applying the changes, it may increment
66         this sequence number.
67       </column>
68
69       <column name="cur_cfg">
70         Sequence number that Open vSwitch sets to the current value of
71         <ref column="next_cfg"/> after it finishes applying a set of
72         configuration changes.
73       </column>
74
75       <column name="capabilities">
76         Describes functionality supported by the hardware and software platform
77         on which this Open vSwitch is based.  Clients should not modify this
78         column.  See the <ref table="Capability"/> description for defined
79         capability categories and the meaning of associated
80         <ref table="Capability"/> records.
81       </column>
82
83       <column name="statistics">
84         <p>
85           Key-value pairs that report statistics about a system running an Open
86           vSwitch.  These are updated periodically (currently, every 5
87           seconds).  Key-value pairs that cannot be determined or that do not
88           apply to a platform are omitted.
89         </p>
90
91         <p>
92           Statistics are disabled unless <ref column="other-config"
93           key="enable-statistics"/> is set to <code>true</code>.
94         </p>
95
96         <dl>
97           <dt><code>cpu</code></dt>
98           <dd>
99             <p>
100               Number of CPU processors, threads, or cores currently online and
101               available to the operating system on which Open vSwitch is
102               running, as an integer.  This may be less than the number
103               installed, if some are not online or if they are not available to
104               the operating system.
105             </p>
106             <p>
107               Open vSwitch userspace processes are not multithreaded, but the
108               Linux kernel-based datapath is.
109             </p>
110           </dd>
111
112           <dt><code>load_average</code></dt>
113           <dd>
114             <p>
115               A comma-separated list of three floating-point numbers,
116               representing the system load average over the last 1, 5, and 15
117               minutes, respectively.
118             </p>
119           </dd>
120
121           <dt><code>memory</code></dt>
122           <dd>
123             <p>
124               A comma-separated list of integers, each of which represents a
125               quantity of memory in kilobytes that describes the operating
126               system on which Open vSwitch is running.  In respective order,
127               these values are:
128             </p>
129
130             <ol>
131               <li>Total amount of RAM allocated to the OS.</li>
132               <li>RAM allocated to the OS that is in use.</li>
133               <li>RAM that can be flushed out to disk or otherwise discarded
134               if that space is needed for another purpose.  This number is
135               necessarily less than or equal to the previous value.</li>
136               <li>Total disk space allocated for swap.</li>
137               <li>Swap space currently in use.</li>
138             </ol>
139
140             <p>
141               On Linux, all five values can be determined and are included.  On
142               other operating systems, only the first two values can be
143               determined, so the list will only have two values.
144             </p>
145           </dd>
146
147           <dt><code>process_</code><var>name</var></dt>
148           <dd>
149             <p>
150               One such key-value pair will exist for each running Open vSwitch
151               daemon process, with <var>name</var> replaced by the daemon's
152               name (e.g. <code>process_ovs-vswitchd</code>).  The value is a
153               comma-separated list of integers.  The integers represent the
154               following, with memory measured in kilobytes and durations in
155               milliseconds:
156             </p>
157
158             <ol>
159               <li>The process's virtual memory size.</li>
160               <li>The process's resident set size.</li>
161               <li>The amount of user and system CPU time consumed by the
162               process.</li>
163               <li>The number of times that the process has crashed and been
164               automatically restarted by the monitor.</li>
165               <li>The duration since the process was started.</li>
166               <li>The duration for which the process has been running.</li>
167             </ol>
168
169             <p>
170               The interpretation of some of these values depends on whether the
171               process was started with the <option>--monitor</option>.  If it
172               was not, then the crash count will always be 0 and the two
173               durations will always be the same.  If <option>--monitor</option>
174               was given, then the crash count may be positive; if it is, the
175               latter duration is the amount of time since the most recent crash
176               and restart.
177             </p>
178
179             <p>
180               There will be one key-value pair for each file in Open vSwitch's
181               ``run directory'' (usually <code>/var/run/openvswitch</code>)
182               whose name ends in <code>.pid</code>, whose contents are a
183               process ID, and which is locked by a running process.  The
184               <var>name</var> is taken from the pidfile's name.
185             </p>
186
187             <p>
188               Currently Open vSwitch is only able to obtain all of the above
189               detail on Linux systems.  On other systems, the same key-value
190               pairs will be present but the values will always be the empty
191               string.
192             </p>
193           </dd>
194
195           <dt><code>file_systems</code></dt>
196           <dd>
197             <p>
198               A space-separated list of information on local, writable file
199               systems.  Each item in the list describes one file system and
200               consists in turn of a comma-separated list of the following:
201             </p>
202
203             <ol>
204               <li>Mount point, e.g. <code>/</code> or <code>/var/log</code>.
205               Any spaces or commas in the mount point are replaced by
206               underscores.</li>
207               <li>Total size, in kilobytes, as an integer.</li>
208               <li>Amount of storage in use, in kilobytes, as an integer.</li>
209             </ol>
210
211             <p>
212               This key-value pair is omitted if there are no local, writable
213               file systems or if Open vSwitch cannot obtain the needed
214               information.
215             </p>
216           </dd>
217         </dl>
218       </column>
219     </group>
220
221     <group title="Version Reporting">
222       <p>
223         These columns report the types and versions of the hardware and
224         software running Open vSwitch.  We recommend in general that software
225         should test whether specific features are supported instead of relying
226         on version number checks.  These values are primarily intended for
227         reporting to human administrators.
228       </p>
229
230       <column name="ovs_version">
231         The Open vSwitch version number, e.g. <code>1.1.0</code>.
232         If Open vSwitch was configured with a build number, then it is
233         also included, e.g. <code>1.1.0+build6579</code>.
234       </column>
235
236       <column name="db_version">
237         <p>
238           The database schema version number in the form
239           <code><var>major</var>.<var>minor</var>.<var>tweak</var></code>,
240           e.g. <code>1.2.3</code>.  Whenever the database schema is changed in
241           a non-backward compatible way (e.g. deleting a column or a table),
242           <var>major</var> is incremented.  When the database schema is changed
243           in a backward compatible way (e.g. adding a new column),
244           <var>minor</var> is incremented.  When the database schema is changed
245           cosmetically (e.g. reindenting its syntax), <var>tweak</var> is
246           incremented.
247         </p>
248
249         <p>
250           The schema version is part of the database schema, so it can also be
251           retrieved by fetching the schema using the Open vSwitch database
252           protocol.
253         </p>
254       </column>
255
256       <column name="system_type">
257         <p>
258           An identifier for the type of system on top of which Open vSwitch
259           runs, e.g. <code>XenServer</code> or <code>KVM</code>.
260         </p>
261         <p>
262           System integrators are responsible for choosing and setting an
263           appropriate value for this column.
264         </p>
265       </column>
266
267       <column name="system_version">
268         <p>
269           The version of the system identified by <ref column="system_type"/>,
270           e.g. <code>5.6.100-39265p</code> on XenServer 5.6.100 build 39265.
271         </p>
272         <p>
273           System integrators are responsible for choosing and setting an
274           appropriate value for this column.
275         </p>
276       </column>
277
278     </group>
279
280     <group title="Database Configuration">
281       <p>
282         These columns primarily configure the Open vSwitch database
283         (<code>ovsdb-server</code>), not the Open vSwitch switch
284         (<code>ovs-vswitchd</code>).  The OVSDB database also uses the <ref
285         column="ssl"/> settings.
286       </p>
287
288       <p>
289         The Open vSwitch switch does read the database configuration to
290         determine remote IP addresses to which in-band control should apply.
291       </p>
292
293       <column name="manager_options">
294         Database clients to which the Open vSwitch database server should
295         connect or to which it should listen, along with options for how these
296         connection should be configured.  See the <ref table="Manager"/> table
297         for more information.
298       </column>
299     </group>
300   </table>
301
302   <table name="Bridge">
303     <p>
304       Configuration for a bridge within an
305       <ref table="Open_vSwitch"/>.
306     </p>
307     <p>
308       A <ref table="Bridge"/> record represents an Ethernet switch with one or
309       more ``ports,'' which are the <ref table="Port"/> records pointed to by
310       the <ref table="Bridge"/>'s <ref column="ports"/> column.
311     </p>
312
313     <group title="Core Features">
314       <column name="name">
315         Bridge identifier.  Should be alphanumeric and no more than about 8
316         bytes long.  Must be unique among the names of ports, interfaces, and
317         bridges on a host.
318       </column>
319
320       <column name="ports">
321         Ports included in the bridge.
322       </column>
323
324       <column name="mirrors">
325         Port mirroring configuration.
326       </column>
327
328       <column name="netflow">
329         NetFlow configuration.
330       </column>
331
332       <column name="sflow">
333         sFlow configuration.
334       </column>
335
336       <column name="flood_vlans">
337         <p>
338           VLAN IDs of VLANs on which MAC address learning should be disabled,
339           so that packets are flooded instead of being sent to specific ports
340           that are believed to contain packets' destination MACs.  This should
341           ordinarily be used to disable MAC learning on VLANs used for
342           mirroring (RSPAN VLANs).  It may also be useful for debugging.
343         </p>
344         <p>
345           SLB bonding (see the <ref table="Port" column="bond_mode"/> column in
346           the <ref table="Port"/> table) is incompatible with
347           <code>flood_vlans</code>.  Consider using another bonding mode or
348           a different type of mirror instead.
349         </p>
350       </column>
351     </group>
352
353     <group title="OpenFlow Configuration">
354       <column name="controller">
355         OpenFlow controller set.  If unset, then no OpenFlow controllers
356         will be used.
357       </column>
358
359       <column name="fail_mode">
360         <p>When a controller is configured, it is, ordinarily, responsible
361           for setting up all flows on the switch.  Thus, if the connection to
362           the controller fails, no new network connections can be set up.
363           If the connection to the controller stays down long enough,
364           no packets can pass through the switch at all.  This setting
365           determines the switch's response to such a situation.  It may be set
366           to one of the following:
367           <dl>
368             <dt><code>standalone</code></dt>
369             <dd>If no message is received from the controller for three
370               times the inactivity probe interval
371               (see <ref column="inactivity_probe"/>), then Open vSwitch
372               will take over responsibility for setting up flows.  In
373               this mode, Open vSwitch causes the bridge to act like an
374               ordinary MAC-learning switch.  Open vSwitch will continue
375               to retry connecting to the controller in the background
376               and, when the connection succeeds, it will discontinue its
377               standalone behavior.</dd>
378             <dt><code>secure</code></dt>
379             <dd>Open vSwitch will not set up flows on its own when the
380               controller connection fails or when no controllers are
381               defined.  The bridge will continue to retry connecting to
382               any defined controllers forever.</dd>
383           </dl>
384         </p>
385         <p>If this value is unset, the default is implementation-specific.</p>
386         <p>When more than one controller is configured,
387           <ref column="fail_mode"/> is considered only when none of the
388           configured controllers can be contacted.</p>
389       </column>
390
391       <column name="datapath_id">
392         Reports the OpenFlow datapath ID in use.  Exactly 16 hex digits.
393         (Setting this column has no useful effect.  Set <ref
394         column="other-config" key="datapath-id"/> instead.)
395       </column>
396     </group>
397
398     <group title="Other Features">
399       <column name="datapath_type">
400         Name of datapath provider.  The kernel datapath has
401         type <code>system</code>.  The userspace datapath has
402         type <code>netdev</code>.
403       </column>
404
405       <column name="external_ids">
406         Key-value pairs for use by external frameworks that integrate
407         with Open vSwitch, rather than by Open vSwitch itself.  System
408         integrators should either use the Open vSwitch development
409         mailing list to coordinate on common key-value definitions, or
410         choose key names that are likely to be unique.  The currently
411         defined key-value pairs are:
412         <dl>
413           <dt><code>bridge-id</code></dt>
414           <dd>A unique identifier of the bridge.  On Citrix XenServer this will
415             commonly be the same as
416             <ref column="external_ids" key="xs-network-uuids"/>.</dd>
417           <dt><code>xs-network-uuids</code></dt>
418           <dd>Semicolon-delimited set of universally unique identifier(s) for
419             the network with which this bridge is associated on a Citrix
420             XenServer host.  The network identifiers are RFC 4122 UUIDs as
421             displayed by, e.g., <code>xe network-list</code>.</dd>
422         </dl>
423       </column>
424
425       <column name="other_config">
426         Key-value pairs for configuring rarely used bridge
427         features.  The currently defined key-value pairs are:
428         <dl>
429           <dt><code>datapath-id</code></dt>
430           <dd>Exactly 16 hex
431             digits to set the OpenFlow datapath ID to a specific
432             value.  May not be all-zero.</dd>
433           <dt><code>disable-in-band</code></dt>
434           <dd>If set to <code>true</code>, disable in-band control on
435             the bridge regardless of controller and manager settings.</dd>
436           <dt><code>hwaddr</code></dt>
437           <dd>An Ethernet address in the form
438             <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
439             to set the hardware address of the local port and influence the
440             datapath ID.</dd>
441           <dt><code>in-band-queue</code></dt>
442           <dd>
443             A queue ID as a nonnegative integer.  This sets the OpenFlow queue
444             ID that will be used by flows set up by in-band control on this
445             bridge.  If unset, or if the port used by an in-band control flow
446             does not have QoS configured, or if the port does not have a queue
447             with the specified ID, the default queue is used instead.
448           </dd>
449           <dt><code>flow-eviction-threshold</code></dt>
450           <dd>
451             A number of flows as a nonnegative integer.  This sets number
452             of flows at which eviction from the kernel flow table will
453             be triggered.
454             If there are a large number of flows then increasing this
455             value to around the number of flows present
456             can result in reduced CPU usage and packet loss.
457           </dd>
458           <dd>
459             The default is 1000.
460           </dd>
461           <dd>
462             Values below 100 will be rounded up to 100.
463           </dd>
464           <dt><code>forward-bpdu</code></dt>
465           <dd>
466             Option to allow forwarding of BPDU frames when NORMAL 
467             action if invoked. Frames with reserved Ethernet addresses 
468             (e.g. STP BPDU) will be forwarded when this option is enabled. 
469             If the Open vSwitch bridge is used to connect different
470             Ethernet networks, and if Open vSwtich node does not run STP, 
471             then this option should be enabled.    
472             Default is disabled, set to <code>true</code> to enable. 
473           </dd>
474         </dl>
475       </column>
476     </group>
477   </table>
478
479   <table name="Port" table="Port or bond configuration.">
480     <p>A port within a <ref table="Bridge"/>.</p>
481     <p>Most commonly, a port has exactly one ``interface,'' pointed to by its
482       <ref column="interfaces"/> column.  Such a port logically
483       corresponds to a port on a physical Ethernet switch.  A port
484       with more than one interface is a ``bonded port'' (see
485       <ref group="Bonding Configuration"/>).</p>
486     <p>Some properties that one might think as belonging to a port are actually
487       part of the port's <ref table="Interface"/> members.</p>
488
489     <column name="name">
490       Port name.  Should be alphanumeric and no more than about 8
491       bytes long.  May be the same as the interface name, for
492       non-bonded ports.  Must otherwise be unique among the names of
493       ports, interfaces, and bridges on a host.
494     </column>
495
496     <column name="interfaces">
497       The port's interfaces.  If there is more than one, this is a
498       bonded Port.
499     </column>
500
501     <group title="VLAN Configuration">
502       <p>A bridge port must be configured for VLANs in one of two
503         mutually exclusive ways:
504         <ul>
505           <li>A ``trunk port'' has an empty value for <ref
506             column="tag"/>.  Its <ref column="trunks"/> value may be
507             empty or non-empty.</li>
508           <li>An ``implicitly tagged VLAN port'' or ``access port''
509             has an nonempty value for <ref column="tag"/>.  Its
510             <ref column="trunks"/> value must be empty.</li>
511         </ul>
512         If <ref column="trunks"/> and <ref column="tag"/> are both
513         nonempty, the configuration is ill-formed.
514       </p>
515
516       <column name="tag">
517         <p>
518           If this is an access port (see above), the port's implicitly
519           tagged VLAN.  Must be empty if this is a trunk port.
520         </p>
521         <p>
522           Frames arriving on trunk ports will be forwarded to this
523           port only if they are tagged with the given VLAN (or, if
524           <ref column="tag"/> is 0, then if they lack a VLAN header).
525           Frames arriving on other access ports will be forwarded to
526           this port only if they have the same <ref column="tag"/>
527           value.  Frames forwarded to this port will not have an
528           802.1Q header.
529         </p>
530         <p>
531           When a frame with a 802.1Q header that indicates a nonzero
532           VLAN is received on an access port, it is discarded.
533         </p>
534       </column>
535
536       <column name="trunks">
537         <p>
538           If this is a trunk port (see above), the 802.1Q VLAN(s) that
539           this port trunks; if it is empty, then the port trunks all
540           VLANs.  Must be empty if this is an access port.
541         </p>
542         <p>
543           Frames arriving on trunk ports are dropped if they are not
544           in one of the specified VLANs.  For this purpose, packets
545           that have no VLAN header are treated as part of VLAN 0.
546         </p>
547       </column>
548     </group>
549
550     <group title="Bonding Configuration">
551       <p>A port that has more than one interface is a ``bonded port.'' Bonding
552         allows for load balancing and fail-over.  Some kinds of bonding will
553         work with any kind of upstream switch:</p>
554
555       <dl>
556         <dt><code>balance-slb</code></dt>
557         <dd>
558           Balances flows among slaves based on source MAC address and output
559           VLAN, with periodic rebalancing as traffic patterns change.
560         </dd>
561
562         <dt><code>active-backup</code></dt>
563         <dd>
564           Assigns all flows to one slave, failing over to a backup slave when
565           the active slave is disabled.
566         </dd>
567       </dl>
568
569       <p>
570         The following modes require the upstream switch to support 802.3ad with
571         successful LACP negotiation.  If LACP negotiation fails then
572         <code>balance-slb</code> style flow hashing is used as a fallback:
573       </p>
574
575       <dl>
576         <dt><code>balance-tcp</code></dt>
577         <dd>
578           Balances flows among slaves based on L2, L3, and L4 protocol
579           information such as destination MAC address, IP address, and TCP
580           port.
581         </dd>
582       </dl>
583
584       <dl>
585         <dt><code>stable</code></dt>
586         <dd>
587           <p>Attempts to always assign a given flow to the same slave
588             consistently.  In an effort to maintain stability, no load
589             balancing is done.  Uses a similar hashing strategy to
590             <code>balance-tcp</code>, always taking into account L3 and L4
591             fields even if LACP negotiations are unsuccessful. </p>
592           <p>Slave selection decisions are made based on <ref table="Interface"
593             column="other_config" key="bond-stable-id"/> if set.  Otherwise,
594             OpenFlow port number is used.  Decisions are consistent across all
595             <code>ovs-vswitchd</code> instances with equivalent
596             <ref table="Interface" column="other_config" key="bond-stable-id"/>
597             values.</p>
598         </dd>
599       </dl>
600
601       <p>These columns apply only to bonded ports.  Their values are
602         otherwise ignored.</p>
603
604       <column name="bond_mode">
605         <p>The type of bonding used for a bonded port.  Defaults to
606           <code>balance-slb</code> if unset.
607         </p>
608       </column>
609
610       <column name="bond_updelay">
611         <p>For a bonded port, the number of milliseconds for which carrier must
612           stay up on an interface before the interface is considered to be up.
613           Specify <code>0</code> to enable the interface immediately.</p>
614         <p>This setting is honored only when at least one bonded interface is
615           already enabled.  When no interfaces are enabled, then the first bond
616           interface to come up is enabled immediately.</p>
617       </column>
618
619       <column name="bond_downdelay">
620         For a bonded port, the number of milliseconds for which carrier must
621         stay down on an interface before the interface is considered to be
622         down.  Specify <code>0</code> to disable the interface immediately.
623       </column>
624
625       <column name="bond_fake_iface">
626         For a bonded port, whether to create a fake internal interface with the
627         name of the port.  Use only for compatibility with legacy software that
628         requires this.
629       </column>
630
631       <column name="lacp">
632         <p>Configures LACP on this port.  LACP allows directly connected
633           switches to negotiate which links may be bonded.  LACP may be enabled
634           on non-bonded ports for the benefit of any switches they may be
635           connected to.  <code>active</code> ports are allowed to initiate LACP
636           negotiations.  <code>passive</code> ports are allowed to participate
637           in LACP negotiations initiated by a remote switch, but not allowed to
638           initiate such negotiations themselves. If unset Open vSwitch will
639           choose a reasonable default. </p>
640       </column>
641
642     </group>
643
644     <group title="Other Features">
645       <column name="qos">
646         Quality of Service configuration for this port.
647       </column>
648
649       <column name="mac">
650         The MAC address to use for this port for the purpose of choosing the
651         bridge's MAC address.  This column does not necessarily reflect the
652         port's actual MAC address, nor will setting it change the port's actual
653         MAC address.
654       </column>
655
656       <column name="fake_bridge">
657         Does this port represent a sub-bridge for its tagged VLAN within the
658         Bridge?  See ovs-vsctl(8) for more information.
659       </column>
660
661       <column name="external_ids">
662         <p>
663           Key-value pairs for use by external frameworks that integrate with
664           Open vSwitch, rather than by Open vSwitch itself.  System integrators
665           should either use the Open vSwitch development mailing list to
666           coordinate on common key-value definitions, or choose key names that
667           are likely to be unique.
668         </p>
669         <p>
670           No key-value pairs native to <ref table="Port"/> are currently
671           defined.  For fake bridges (see the <ref column="fake_bridge"/>
672           column), external IDs for the fake bridge are defined here by
673           prefixing a <ref table="Bridge"/> <ref table="Bridge"
674           column="external_ids"/> key with <code>fake-bridge-</code>,
675           e.g. <code>fake-bridge-xs-network-uuids</code>.
676         </p>
677       </column>
678
679       <column name="other_config">
680         Key-value pairs for configuring rarely used port features.  The
681         currently defined key-value pairs are:
682         <dl>
683           <dt><code>hwaddr</code></dt>
684           <dd>An Ethernet address in the form
685             <code><var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var></code>.</dd>
686           <dt><code>bond-rebalance-interval</code></dt>
687           <dd>For an SLB bonded port, the number of milliseconds between
688             successive attempts to rebalance the bond, that is, to
689             move source MACs and their flows from one interface on
690             the bond to another in an attempt to keep usage of each
691             interface roughly equal.  The default is 10000 (10
692             seconds), and the minimum is 1000 (1 second).</dd>
693           <dt><code>bond-detect-mode</code></dt>
694           <dd> Sets the method used to detect link failures in a bonded port.
695             Options are <code>carrier</code> and <code>miimon</code>. Defaults
696             to <code>carrier</code> which uses each interface's carrier to detect
697             failures.  When set to <code>miimon</code>, will check for failures
698             by polling each interface's MII. </dd>
699           <dt><code>bond-miimon-interval</code></dt>
700           <dd> The number of milliseconds between successive attempts to
701             poll each interface's MII.  Only relevant on ports which use
702             <code>miimon</code> to detect failures. </dd>
703           <dt><code>bond-hash-basis</code></dt>
704           <dd> An integer hashed along with flows when choosing output slaves.
705             When changed, all flows will be assigned different hash values
706             possibly causing slave selection decisions to change.</dd>
707           <dt><code>lacp-system-id</code></dt>
708           <dd> The LACP system ID of this <ref table="Port"/>.  The system ID
709             of a LACP bond is used to identify itself to its partners.  Must
710             be a nonzero MAC address.</dd>
711           <dt><code>lacp-system-priority</code></dt>
712           <dd> The LACP system priority of this <ref table="Port"/>.  In
713             LACP negotiations, link status decisions are made by the system
714             with the numerically lower priority.  Must be a number between 1
715             and 65535.</dd>
716           <dt><code>lacp-time</code></dt>
717           <dd>
718             <p>The LACP timing which should be used on this
719               <ref table="Port"/>.  Possible values are <code>fast</code>,
720               <code>slow</code> and a positive number of milliseconds.  By
721               default <code>slow</code> is used.  When configured to be
722               <code>fast</code> LACP heartbeats are requested at a rate of once
723               per second causing connectivity problems to be detected more
724               quickly.  In <code>slow</code> mode, heartbeats are requested at
725               a rate of once every 30 seconds.</p>
726
727             <p>Users may manually set a heartbeat transmission rate to increase
728               the fault detection speed further.  When manually set, OVS
729               expects the partner switch to be configured with the same
730               transmission rate.  Manually setting <code>lacp-time</code> to
731               something other than <code>fast</code> or <code>slow</code> is
732               not supported by the LACP specification.</p>
733           </dd>
734           <dt><code>lacp-heartbeat</code></dt>
735           <dd> Treats LACP like a simple heartbeat protocol for link state
736             monitoring.  Most features of the LACP protocol are disabled when
737             this mode is in use.</dd>
738         </dl>
739       </column>
740     </group>
741   </table>
742
743   <table name="Interface" title="One physical network device in a Port.">
744     An interface within a <ref table="Port"/>.
745
746     <group title="Core Features">
747       <column name="name">
748         Interface name.  Should be alphanumeric and no more than about 8 bytes
749         long.  May be the same as the port name, for non-bonded ports.  Must
750         otherwise be unique among the names of ports, interfaces, and bridges
751         on a host.
752       </column>
753
754       <column name="mac">
755         <p>Ethernet address to set for this interface.  If unset then the
756           default MAC address is used:</p>
757         <ul>
758           <li>For the local interface, the default is the lowest-numbered MAC
759             address among the other bridge ports, either the value of the
760             <ref table="Port" column="mac"/> in its <ref table="Port"/> record,
761             if set, or its actual MAC (for bonded ports, the MAC of its slave
762             whose name is first in alphabetical order).  Internal ports and
763             bridge ports that are used as port mirroring destinations (see the
764             <ref table="Mirror"/> table) are ignored.</li>
765           <li>For other internal interfaces, the default MAC is randomly
766             generated.</li>
767           <li>External interfaces typically have a MAC address associated with
768             their hardware.</li>
769         </ul>
770         <p>Some interfaces may not have a software-controllable MAC
771         address.</p>
772       </column>
773
774       <column name="ofport">
775         <p>OpenFlow port number for this interface.  Unlike most columns, this
776           column's value should be set only by Open vSwitch itself.  Other
777           clients should set this column to an empty set (the default) when
778           creating an <ref table="Interface"/>.</p>
779         <p>Open vSwitch populates this column when the port number becomes
780           known.  If the interface is successfully added,
781           <ref column="ofport"/> will be set to a number between 1 and 65535
782           (generally either in the range 1 to 65279, inclusive, or 65534, the
783           port number for the OpenFlow ``local port'').  If the interface
784           cannot be added then Open vSwitch sets this column
785           to -1.</p>
786       </column>
787     </group>
788
789     <group title="System-Specific Details">
790       <column name="type">
791         The interface type, one of:
792         <dl>
793           <dt><code>system</code></dt>
794           <dd>An ordinary network device, e.g. <code>eth0</code> on Linux.
795             Sometimes referred to as ``external interfaces'' since they are
796             generally connected to hardware external to that on which the Open
797             vSwitch is running.  The empty string is a synonym for
798             <code>system</code>.</dd>
799           <dt><code>internal</code></dt>
800           <dd>A simulated network device that sends and receives traffic.  An
801             internal interface whose <ref column="name"/> is the same as its
802             bridge's <ref table="Open_vSwitch" column="name"/> is called the
803             ``local interface.''  It does not make sense to bond an internal
804             interface, so the terms ``port'' and ``interface'' are often used
805             imprecisely for internal interfaces.</dd>
806           <dt><code>tap</code></dt>
807           <dd>A TUN/TAP device managed by Open vSwitch.</dd>
808           <dt><code>gre</code></dt>
809           <dd>An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
810             tunnel.  Each tunnel must be uniquely identified by the
811             combination of <ref column="options" key="remote_ip"/>,
812             <ref column="options" key="local_ip"/>, and
813             <ref column="options" key="in_key"/>.  Note that if two ports
814             are defined that are the same except one has an optional
815             identifier and the other does not, the more specific one is
816             matched first.  <ref column="options" key="in_key"/> is considered
817             more specific than <ref column="options" key="local_ip"/> if a port
818             defines one and another port defines the other.  The following
819             options may be specified in the <ref column="options"/> column:
820             <dl>
821               <dt><code>remote_ip</code></dt>
822               <dd>Required.  The tunnel endpoint.</dd>
823             </dl>
824             <dl>
825               <dt><code>local_ip</code></dt>
826               <dd>Optional.  The destination IP that received packets must
827                 match.  Default is to match all addresses.</dd>
828             </dl>
829             <dl>
830               <dt><code>in_key</code></dt>
831               <dd>Optional.  The GRE key that received packets must contain.
832                 It may either be a 32-bit number (no key and a key of 0 are
833                 treated as equivalent) or the word <code>flow</code>.  If
834                 <code>flow</code> is specified then any key will be accepted
835                 and the key will be placed in the <code>tun_id</code> field
836                 for matching in the flow table.  The ovs-ofctl manual page
837                 contains additional information about matching fields in
838                 OpenFlow flows.  Default is no key.</dd>
839             </dl>
840             <dl>
841               <dt><code>out_key</code></dt>
842               <dd>Optional.  The GRE key to be set on outgoing packets.  It may
843                 either be a 32-bit number or the word <code>flow</code>.  If
844                 <code>flow</code> is specified then the key may be set using
845                 the <code>set_tunnel</code> Nicira OpenFlow vendor extension (0
846                 is used in the absence of an action).  The ovs-ofctl manual
847                 page contains additional information about the Nicira OpenFlow
848                 vendor extensions.  Default is no key.</dd>
849             </dl>
850             <dl>
851               <dt><code>key</code></dt>
852               <dd>Optional.  Shorthand to set <code>in_key</code> and
853                 <code>out_key</code> at the same time.</dd>
854             </dl>
855             <dl>
856               <dt><code>tos</code></dt>
857               <dd>Optional.  The value of the ToS bits to be set on the
858                 encapsulating packet.  It may also be the word
859                 <code>inherit</code>, in which case the ToS will be copied from
860                 the inner packet if it is IPv4 or IPv6 (otherwise it will be
861                 0).  Note that the ECN fields are always inherited.  Default is
862                 0.</dd>
863             </dl>
864             <dl>
865               <dt><code>ttl</code></dt>
866               <dd>Optional.  The TTL to be set on the encapsulating packet.
867                 It may also be the word <code>inherit</code>, in which case the
868                 TTL will be copied from the inner packet if it is IPv4 or IPv6
869                 (otherwise it will be the system default, typically 64).
870                 Default is the system default TTL.</dd>
871             </dl>
872             <dl>
873               <dt><code>csum</code></dt>
874               <dd>Optional.  Compute GRE checksums on outgoing packets.
875                 Checksums present on incoming packets will be validated
876                 regardless of this setting.  Note that GRE checksums
877                 impose a significant performance penalty as they cover the
878                 entire packet.  As the contents of the packet is typically
879                 covered by L3 and L4 checksums, this additional checksum only
880                 adds value for the GRE and encapsulated Ethernet headers.
881                 Default is disabled, set to <code>true</code> to enable.</dd>
882             </dl>
883             <dl>
884               <dt><code>df_inherit</code></dt>
885               <dd>Optional.  If enabled, the Don't Fragment bit will be copied
886                 from the inner IP headers (those of the encapsulated traffic)
887                 to the outer (tunnel) headers.  Default is disabled; set to
888                 <code>true</code> to enable.</dd>
889             </dl>
890             <dl>
891               <dt><code>df_default</code></dt>
892               <dd>Optional.  If enabled, the Don't Fragment bit will be set by
893                 default on tunnel headers if the <code>df_inherit</code> option
894                 is not set, or if the encapsulated packet is not IP.  Default
895                 is enabled; set to <code>false</code> to disable.</dd>
896             </dl>
897             <dl>
898               <dt><code>pmtud</code></dt>
899               <dd>Optional.  Enable tunnel path MTU discovery.  If enabled
900                 ``ICMP Destination Unreachable - Fragmentation Needed''
901                 messages will be generated for IPv4 packets with the DF bit set
902                 and IPv6 packets above the minimum MTU if the packet size
903                 exceeds the path MTU minus the size of the tunnel headers.
904                 Note that this option causes behavior that is typically
905                 reserved for routers and therefore is not entirely in
906                 compliance with the IEEE 802.1D specification for bridges.
907                 Default is enabled; set to <code>false</code> to disable.</dd>
908             </dl>
909             <dl>
910               <dt><code>header_cache</code></dt>
911               <dd>Optional.  Enable caching of tunnel headers and the output
912                 path.  This can lead to a significant performance increase
913                 without changing behavior.  In general it should not be
914                 necessary to adjust this setting.  However, the caching can
915                 bypass certain components of the IP stack (such as IP tables)
916                 and it may be useful to disable it if these features are
917                 required or as a debugging measure.  Default is enabled, set to
918                 <code>false</code> to disable.</dd>
919             </dl>
920           </dd>
921           <dt><code>ipsec_gre</code></dt>
922           <dd>An Ethernet over RFC 2890 Generic Routing Encapsulation
923             over IPv4 IPsec tunnel.  Each tunnel (including those of type
924             <code>gre</code>) must be uniquely identified by the
925             combination of <ref column="options" key="remote_ip"/> and
926             <ref column="options" key="local_ip"/>.  Note that if two ports are
927             defined that are the same except one has an optional identifier and
928             the other does not, the more specific one is matched first.
929             An authentication method of <ref column="options" key="peer_cert"/>
930             or <ref column="options" key="psk"/> must be defined.  The
931             following options may be specified in the <ref column="options"/>
932             column:
933             <dl>
934               <dt><code>remote_ip</code></dt>
935               <dd>Required.  The tunnel endpoint.</dd>
936             </dl>
937             <dl>
938               <dt><code>local_ip</code></dt>
939               <dd>Optional.  The destination IP that received packets must
940                 match.  Default is to match all addresses.</dd>
941             </dl>
942             <dl>
943               <dt><code>peer_cert</code></dt>
944               <dd>Required for certificate authentication.  A string
945                 containing the peer's certificate in PEM format.
946                 Additionally the host's certificate must be specified
947                 with the <code>certificate</code> option.</dd>
948             </dl>
949             <dl>
950               <dt><code>certificate</code></dt>
951               <dd>Required for certificate authentication.  The name of a
952                 PEM file containing a certificate that will be presented
953                 to the peer during authentication.</dd>
954             </dl>
955             <dl>
956               <dt><code>private_key</code></dt>
957               <dd>Optional for certificate authentication.  The name of
958                 a PEM file containing the private key associated with
959                 <code>certificate</code>.  If <code>certificate</code>
960                 contains the private key, this option may be omitted.</dd>
961             </dl>
962             <dl>
963               <dt><code>psk</code></dt>
964               <dd>Required for pre-shared key authentication.  Specifies a
965                 pre-shared key for authentication that must be identical on
966                 both sides of the tunnel.</dd>
967             </dl>
968             <dl>
969               <dt><code>in_key</code></dt>
970               <dd>Optional.  The GRE key that received packets must contain.
971                 It may either be a 32-bit number (no key and a key of 0 are
972                 treated as equivalent) or the word <code>flow</code>.  If
973                 <code>flow</code> is specified then any key will be accepted
974                 and the key will be placed in the <code>tun_id</code> field
975                 for matching in the flow table.  The ovs-ofctl manual page
976                 contains additional information about matching fields in
977                 OpenFlow flows.  Default is no key.</dd>
978             </dl>
979             <dl>
980               <dt><code>out_key</code></dt>
981               <dd>Optional.  The GRE key to be set on outgoing packets.  It may
982                 either be a 32-bit number or the word <code>flow</code>.  If
983                 <code>flow</code> is specified then the key may be set using
984                 the <code>set_tunnel</code> Nicira OpenFlow vendor extension (0
985                 is used in the absence of an action).  The ovs-ofctl manual
986                 page contains additional information about the Nicira OpenFlow
987                 vendor extensions.  Default is no key.</dd>
988             </dl>
989             <dl>
990               <dt><code>key</code></dt>
991               <dd>Optional.  Shorthand to set <code>in_key</code> and
992                 <code>out_key</code> at the same time.</dd>
993             </dl>
994             <dl>
995               <dt><code>tos</code></dt>
996               <dd>Optional.  The value of the ToS bits to be set on the
997                 encapsulating packet.  It may also be the word
998                 <code>inherit</code>, in which case the ToS will be copied from
999                 the inner packet if it is IPv4 or IPv6 (otherwise it will be
1000                 0).  Note that the ECN fields are always inherited.  Default is
1001                 0.</dd>
1002             </dl>
1003             <dl>
1004               <dt><code>ttl</code></dt>
1005               <dd>Optional.  The TTL to be set on the encapsulating packet.
1006                 It may also be the word <code>inherit</code>, in which case the
1007                 TTL will be copied from the inner packet if it is IPv4 or IPv6
1008                 (otherwise it will be the system default, typically 64).
1009                 Default is the system default TTL.</dd>
1010             </dl>
1011             <dl>
1012               <dt><code>csum</code></dt>
1013               <dd>Optional.  Compute GRE checksums on outgoing packets.
1014                 Checksums present on incoming packets will be validated
1015                 regardless of this setting.  Note that GRE checksums
1016                 impose a significant performance penalty as they cover the
1017                 entire packet.  As the contents of the packet is typically
1018                 covered by L3 and L4 checksums, this additional checksum only
1019                 adds value for the GRE and encapsulated Ethernet headers.
1020                 Default is disabled, set to <code>true</code> to enable.</dd>
1021             </dl>
1022             <dl>
1023               <dt><code>df_inherit</code></dt>
1024               <dd>Optional.  If enabled, the Don't Fragment bit will be copied
1025                 from the inner IP headers (those of the encapsulated traffic)
1026                 to the outer (tunnel) headers.  Default is disabled; set to
1027                 <code>true</code> to enable.</dd>
1028             </dl>
1029             <dl>
1030               <dt><code>df_default</code></dt>
1031               <dd>Optional.  If enabled, the Don't Fragment bit will be set by
1032                 default on tunnel headers if the <code>df_inherit</code> option
1033                 is not set, or if the encapsulated packet is not IP.  Default
1034                 is enabled; set to <code>false</code> to disable.</dd>
1035             </dl>
1036             <dl>
1037               <dt><code>pmtud</code></dt>
1038               <dd>Optional.  Enable tunnel path MTU discovery.  If enabled
1039                 ``ICMP Destination Unreachable - Fragmentation Needed''
1040                 messages will be generated for IPv4 packets with the DF bit set
1041                 and IPv6 packets above the minimum MTU if the packet size
1042                 exceeds the path MTU minus the size of the tunnel headers.
1043                 Note that this option causes behavior that is typically
1044                 reserved for routers and therefore is not entirely in
1045                 compliance with the IEEE 802.1D specification for bridges.
1046                 Default is enabled; set to <code>false</code> to disable.</dd>
1047             </dl>
1048           </dd>
1049           <dt><code>capwap</code></dt>
1050           <dd>Ethernet tunneling over the UDP transport portion of CAPWAP
1051              (RFC 5415).  This allows interoperability with certain switches
1052              where GRE is not available.  Note that only the tunneling component
1053              of the protocol is implemented.  Due to the non-standard use of
1054              CAPWAP, UDP ports 58881 and 58882 are used as the source and
1055              destination ports respectively.  Each tunnel must be uniquely
1056              identified by the combination of
1057              <ref column="options" key="remote_ip"/> and
1058              <ref column="options" key="local_ip"/>.  If two ports are defined
1059              that are the same except one includes
1060              <ref column="options" key="local_ip"/> and the other does not, the
1061              more specific one is matched first.  CAPWAP support is not
1062              available on all platforms.  Currently it is only supported in the
1063              Linux kernel module with kernel versions >= 2.6.25.  The following
1064              options may be specified in the <ref column="options"/> column:
1065             <dl>
1066               <dt><code>remote_ip</code></dt>
1067               <dd>Required.  The tunnel endpoint.</dd>
1068             </dl>
1069             <dl>
1070               <dt><code>local_ip</code></dt>
1071               <dd>Optional.  The destination IP that received packets must
1072                 match.  Default is to match all addresses.</dd>
1073             </dl>
1074             <dl>
1075               <dt><code>tos</code></dt>
1076               <dd>Optional.  The value of the ToS bits to be set on the
1077                 encapsulating packet.  It may also be the word
1078                 <code>inherit</code>, in which case the ToS will be copied from
1079                 the inner packet if it is IPv4 or IPv6 (otherwise it will be
1080                 0).  Note that the ECN fields are always inherited.  Default is
1081                 0.</dd>
1082             </dl>
1083             <dl>
1084               <dt><code>ttl</code></dt>
1085               <dd>Optional.  The TTL to be set on the encapsulating packet.
1086                 It may also be the word <code>inherit</code>, in which case the
1087                 TTL will be copied from the inner packet if it is IPv4 or IPv6
1088                 (otherwise it will be the system default, typically 64).
1089                 Default is the system default TTL.</dd>
1090             </dl>
1091             <dl>
1092               <dt><code>df_inherit</code></dt>
1093               <dd>Optional.  If enabled, the Don't Fragment bit will be copied
1094                 from the inner IP headers (those of the encapsulated traffic)
1095                 to the outer (tunnel) headers.  Default is disabled; set to
1096                 <code>true</code> to enable.</dd>
1097             </dl>
1098             <dl>
1099               <dt><code>df_default</code></dt>
1100               <dd>Optional.  If enabled, the Don't Fragment bit will be set by
1101                 default on tunnel headers if the <code>df_inherit</code> option
1102                 is not set, or if the encapsulated packet is not IP.  Default
1103                 is enabled; set to <code>false</code> to disable.</dd>
1104             </dl>
1105             <dl>
1106               <dt><code>pmtud</code></dt>
1107               <dd>Optional.  Enable tunnel path MTU discovery.  If enabled
1108                 ``ICMP Destination Unreachable - Fragmentation Needed''
1109                 messages will be generated for IPv4 packets with the DF bit set
1110                 and IPv6 packets above the minimum MTU if the packet size
1111                 exceeds the path MTU minus the size of the tunnel headers.
1112                 Note that this option causes behavior that is typically
1113                 reserved for routers and therefore is not entirely in
1114                 compliance with the IEEE 802.1D specification for bridges.
1115                 Default is enabled; set to <code>false</code> to disable.</dd>
1116             </dl>
1117             <dl>
1118               <dt><code>header_cache</code></dt>
1119               <dd>Optional.  Enable caching of tunnel headers and the output
1120                 path.  This can lead to a significant performance increase
1121                 without changing behavior.  In general it should not be
1122                 necessary to adjust this setting.  However, the caching can
1123                 bypass certain components of the IP stack (such as IP tables)
1124                 and it may be useful to disable it if these features are
1125                 required or as a debugging measure.  Default is enabled, set to
1126                 <code>false</code> to disable.</dd>
1127             </dl>
1128           </dd>
1129           <dt><code>patch</code></dt>
1130           <dd>
1131             <p>
1132               A pair of virtual devices that act as a patch cable.  The <ref
1133               column="options"/> column must have the following key-value pair:
1134             </p>
1135             <dl>
1136               <dt><code>peer</code></dt>
1137               <dd>
1138                 The <ref column="name"/> of the <ref table="Interface"/> for
1139                 the other side of the patch.  The named <ref
1140                 table="Interface"/>'s own <code>peer</code> option must specify
1141                 this <ref table="Interface"/>'s name.  That is, the two patch
1142                 interfaces must have reversed <ref column="name"/> and
1143                 <code>peer</code> values.
1144               </dd>
1145             </dl>
1146           </dd>
1147           <dt><code>null</code></dt>
1148           <dd>An ignored interface.</dd>
1149         </dl>
1150       </column>
1151
1152       <column name="options">
1153         Configuration options whose interpretation varies based on
1154         <ref column="type"/>.
1155       </column>
1156     </group>
1157
1158     <group title="Interface Status">
1159       <p>
1160         Status information about interfaces attached to bridges, updated every
1161         5 seconds.  Not all interfaces have all of these properties; virtual
1162         interfaces don't have a link speed, for example.  Non-applicable
1163         columns will have empty values.
1164       </p>
1165       <column name="admin_state">
1166         <p>
1167           The administrative state of the physical network link.
1168         </p>
1169       </column>
1170
1171       <column name="link_state">
1172         <p>
1173           The observed state of the physical network link.  This is ordinarily
1174           the link's carrier status.  If the interface's <ref table="Port"/> is
1175           a bond configured for miimon monitoring, it is instead the network
1176           link's miimon status.
1177         </p>
1178       </column>
1179
1180       <column name="link_speed">
1181         <p>
1182           The negotiated speed of the physical network link.
1183           Valid values are positive integers greater than 0.
1184         </p>
1185       </column>
1186
1187       <column name="duplex">
1188         <p>
1189           The duplex mode of the physical network link.
1190         </p>
1191       </column>
1192
1193       <column name="mtu">
1194         <p>
1195           The MTU (maximum transmission unit); i.e. the largest
1196           amount of data that can fit into a single Ethernet frame.
1197           The standard Ethernet MTU is 1500 bytes.  Some physical media
1198           and many kinds of virtual interfaces can be configured with
1199           higher MTUs.
1200         </p>
1201         <p>
1202           This column will be empty for an interface that does not
1203           have an MTU as, for example, some kinds of tunnels do not.
1204         </p>
1205       </column>
1206
1207       <column name="status">
1208         <p>
1209           Key-value pairs that report port status.  Supported status values are
1210           <ref column="type"/>-dependent; some interfaces may not have a valid
1211           <ref column="status" key="driver_name"/>, for example.
1212         </p>
1213         <p>The currently defined key-value pairs are:</p>
1214         <dl>
1215           <dt><code>driver_name</code></dt>
1216           <dd>The name of the device driver controlling the network
1217             adapter.</dd>
1218         </dl>
1219         <dl>
1220           <dt><code>driver_version</code></dt>
1221           <dd>The version string of the device driver controlling the
1222             network adapter.</dd>
1223         </dl>
1224         <dl>
1225           <dt><code>firmware_version</code></dt>
1226           <dd>The version string of the network adapter's firmware, if
1227             available.</dd>
1228         </dl>
1229         <dl>
1230           <dt><code>source_ip</code></dt>
1231           <dd>The source IP address used for an IPv4 tunnel end-point,
1232             such as <code>gre</code> or <code>capwap</code>.</dd>
1233         </dl>
1234         <dl>
1235             <dt><code>tunnel_egress_iface</code></dt>
1236             <dd>Egress interface for tunnels.  Currently only relevant for GRE
1237                 and CAPWAP tunnels.  On Linux systems, this column will show
1238                 the name of the interface which is responsible for routing
1239                 traffic destined for the configured
1240                 <ref column="options" key="remote_ip"/>.  This could be an
1241                 internal interface such as a bridge port.</dd>
1242         </dl>
1243         <dl>
1244             <dt><code>tunnel_egress_iface_carrier</code></dt>
1245             <dd>Whether a carrier is detected on
1246               <ref column="status" key="tunnel_egress_iface"/>.  Valid values
1247               are <code>down</code> and <code>up</code>.</dd>
1248         </dl>
1249       </column>
1250     </group>
1251
1252     <group title="Ingress Policing">
1253       <p>
1254         These settings control ingress policing for packets received on this
1255         interface.  On a physical interface, this limits the rate at which
1256         traffic is allowed into the system from the outside; on a virtual
1257         interface (one connected to a virtual machine), this limits the rate at
1258         which the VM is able to transmit.
1259       </p>
1260       <p>
1261         Policing is a simple form of quality-of-service that simply drops
1262         packets received in excess of the configured rate.  Due to its
1263         simplicity, policing is usually less accurate and less effective than
1264         egress QoS (which is configured using the <ref table="QoS"/> and <ref
1265         table="Queue"/> tables).
1266       </p>
1267       <p>
1268         Policing is currently implemented only on Linux.  The Linux
1269         implementation uses a simple ``token bucket'' approach:
1270       </p>
1271       <ul>
1272         <li>
1273           The size of the bucket corresponds to <ref
1274           column="ingress_policing_burst"/>.  Initially the bucket is full.
1275         </li>
1276         <li>
1277           Whenever a packet is received, its size (converted to tokens) is
1278           compared to the number of tokens currently in the bucket.  If the
1279           required number of tokens are available, they are removed and the
1280           packet is forwarded.  Otherwise, the packet is dropped.
1281         </li>
1282         <li>
1283           Whenever it is not full, the bucket is refilled with tokens at the
1284           rate specified by <ref column="ingress_policing_rate"/>.
1285         </li>
1286       </ul>
1287       <p>
1288         Policing interacts badly with some network protocols, and especially
1289         with fragmented IP packets.  Suppose that there is enough network
1290         activity to keep the bucket nearly empty all the time.  Then this token
1291         bucket algorithm will forward a single packet every so often, with the
1292         period depending on packet size and on the configured rate.  All of the
1293         fragments of an IP packets are normally transmitted back-to-back, as a
1294         group.  In such a situation, therefore, only one of these fragments
1295         will be forwarded and the rest will be dropped.  IP does not provide
1296         any way for the intended recipient to ask for only the remaining
1297         fragments.  In such a case there are two likely possibilities for what
1298         will happen next: either all of the fragments will eventually be
1299         retransmitted (as TCP will do), in which case the same problem will
1300         recur, or the sender will not realize that its packet has been dropped
1301         and data will simply be lost (as some UDP-based protocols will do).
1302         Either way, it is possible that no forward progress will ever occur.
1303       </p>
1304       <column name="ingress_policing_rate">
1305         <p>
1306           Maximum rate for data received on this interface, in kbps.  Data
1307           received faster than this rate is dropped.  Set to <code>0</code>
1308           (the default) to disable policing.
1309         </p>
1310       </column>
1311
1312       <column name="ingress_policing_burst">
1313         <p>Maximum burst size for data received on this interface, in kb.  The
1314           default burst size if set to <code>0</code> is 1000 kb.  This value
1315           has no effect if <ref column="ingress_policing_rate"/>
1316           is <code>0</code>.</p>
1317         <p>
1318           Specifying a larger burst size lets the algorithm be more forgiving,
1319           which is important for protocols like TCP that react severely to
1320           dropped packets.  The burst size should be at least the size of the
1321           interface's MTU.  Specifying a value that is numerically at least as
1322           large as 10% of <ref column="ingress_policing_rate"/> helps TCP come
1323           closer to achieving the full rate.
1324         </p>
1325       </column>
1326     </group>
1327
1328     <group title="Connectivity Fault Management">
1329       <p>
1330         802.1ag Connectivity Fault Management (CFM) allows a group of
1331         Maintenance Points (MPs) called a Maintenance Association (MA) to
1332         detect connectivity problems with each other.  MPs within a MA should
1333         have complete and exclusive interconnectivity.  This is verified by
1334         occasionally broadcasting Continuity Check Messages (CCMs) at a
1335         configurable transmission interval.
1336       </p>
1337
1338       <column name="cfm_mpid">
1339         A Maintenance Point ID (MPID) uniquely identifies each endpoint within
1340         a Maintenance Association.  The MPID is used to identify this endpoint
1341         to other Maintenance Points in the MA.  Each end of a link being
1342         monitored should have a different MPID.  Must be configured to enable
1343         CFM on this <ref table="Interface"/>.
1344       </column>
1345
1346       <column name="cfm_remote_mpid">
1347         The MPID of the remote endpoint being monitored.  If this
1348         <ref table="Interface"/> does not have connectivity to an endpoint
1349         advertising the configured MPID, a fault is signalled.  Must be
1350         configured to enable CFM on this <ref table="Interface"/>
1351       </column>
1352
1353       <column name="cfm_fault">
1354         Indicates a connectivity fault triggered by an inability to receive
1355         heartbeats from the remote endpoint.  When a fault is triggered on
1356         <ref table="Interface"/>s participating in bonds, they will be
1357         disabled.
1358       </column>
1359     </group>
1360
1361     <group title="Other Features">
1362
1363       <column name="lacp_current">
1364         Boolean value indicating LACP status for this interface.  If true, this
1365         interface has current LACP information about its LACP partner.  This
1366         information may be used to monitor the health of interfaces in a LACP
1367         enabled port. This column will be empty if LACP is not enabled.
1368       </column>
1369
1370       <column name="external_ids">
1371         Key-value pairs for use by external frameworks that integrate
1372         with Open vSwitch, rather than by Open vSwitch itself.  System
1373         integrators should either use the Open vSwitch development
1374         mailing list to coordinate on common key-value definitions, or
1375         choose key names that are likely to be unique.  The currently
1376         defined common key-value pairs are:
1377         <dl>
1378           <dt><code>attached-mac</code></dt>
1379           <dd>
1380             The MAC address programmed into the ``virtual hardware'' for this
1381             interface, in the form
1382             <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
1383             For Citrix XenServer, this is the value of the <code>MAC</code>
1384             field in the VIF record for this interface.</dd>
1385           <dt><code>iface-id</code></dt>
1386           <dd>A system-unique identifier for the interface.  On XenServer,
1387             this will commonly be the same as
1388             <ref column="external_ids" key="xs-vif-uuid"/>.</dd>
1389         </dl>
1390         <p>
1391           Additionally the following key-value pairs specifically
1392           apply to an interface that represents a virtual Ethernet interface
1393           connected to a virtual machine.  These key-value pairs should not be
1394           present for other types of interfaces.  Keys whose names end
1395           in <code>-uuid</code> have values that uniquely identify the entity
1396           in question.  For a Citrix XenServer hypervisor, these values are
1397           UUIDs in RFC 4122 format.  Other hypervisors may use other
1398           formats.
1399         </p>
1400         <p>The currently defined key-value pairs for XenServer are:</p>
1401         <dl>
1402           <dt><code>xs-vif-uuid</code></dt>
1403           <dd>The virtual interface associated with this interface.</dd>
1404           <dt><code>xs-network-uuid</code></dt>
1405           <dd>The virtual network to which this interface is attached.</dd>
1406           <dt><code>xs-vm-uuid</code></dt>
1407           <dd>The VM to which this interface belongs.</dd>
1408         </dl>
1409       </column>
1410
1411       <column name="other_config">
1412         Key-value pairs for rarely used interface features.
1413         <dl>
1414           <dt><code>cfm_interval</code></dt>
1415           <dd> The transmission interval of CFM heartbeats in milliseconds.
1416             Three missed heartbeat receptions indicate a connectivity fault.
1417             Defaults to 1000ms. </dd>
1418           <dt><code>bond-stable-id</code></dt>
1419           <dd> A positive integer using in <code>stable</code> bond mode to
1420             make slave selection decisions.  Allocating
1421             <ref column="other_config" key="bond-stable-id"/> values
1422             consistently across interfaces participating in a bond will
1423             guarantee consistent slave selection decisions across
1424             <code>ovs-vswitchd</code> instances when using <code>stable</code>
1425             bonding mode.</dd>
1426           <dt><code>lacp-port-id</code></dt>
1427           <dd> The LACP port ID of this <ref table="Interface"/>.  Port IDs are
1428             used in LACP negotiations to identify individual ports
1429             participating in a bond.  Must be a number between 1 and
1430             65535.</dd>
1431           <dt><code>lacp-port-priority</code></dt>
1432           <dd> The LACP port priority of this <ref table="Interface"/>.  In
1433             LACP negotiations <ref table="Interface"/>s with numerically lower
1434             priorities are preferred for aggregation.  Must be a number between
1435             1 and 65535.</dd>
1436           <dt><code>lacp-aggregation-key</code></dt>
1437           <dd> The LACP aggregation key of this <ref table="Interface"/>.
1438             <ref table="Interface"/>s with different aggregation keys may not
1439             be active within a given <ref table="Port"/> at the same time. Must
1440             be a number between 1 and 65535.</dd>
1441         </dl>
1442       </column>
1443
1444       <column name="statistics">
1445         <p>
1446           Key-value pairs that report interface statistics.  The current
1447           implementation updates these counters periodically.  In the future,
1448           we plan to, instead, update them when an interface is created, when
1449           they are queried (e.g. using an OVSDB <code>select</code> operation),
1450           and just before an interface is deleted due to virtual interface
1451           hot-unplug or VM shutdown, and perhaps at other times, but not on any
1452           regular periodic basis.</p>
1453         <p>
1454           The currently defined key-value pairs are listed below.  These are
1455           the same statistics reported by OpenFlow in its <code>struct
1456           ofp_port_stats</code> structure.  If an interface does not support a
1457           given statistic, then that pair is omitted.</p>
1458         <ul>
1459           <li>
1460             Successful transmit and receive counters:
1461             <dl>
1462               <dt><code>rx_packets</code></dt>
1463               <dd>Number of received packets.</dd>
1464               <dt><code>rx_bytes</code></dt>
1465               <dd>Number of received bytes.</dd>
1466               <dt><code>tx_packets</code></dt>
1467               <dd>Number of transmitted packets.</dd>
1468               <dt><code>tx_bytes</code></dt>
1469               <dd>Number of transmitted bytes.</dd>
1470             </dl>
1471           </li>
1472           <li>
1473             Receive errors:
1474             <dl>
1475               <dt><code>rx_dropped</code></dt>
1476               <dd>Number of packets dropped by RX.</dd>
1477               <dt><code>rx_frame_err</code></dt>
1478               <dd>Number of frame alignment errors.</dd>
1479               <dt><code>rx_over_err</code></dt>
1480               <dd>Number of packets with RX overrun.</dd>
1481               <dt><code>rx_crc_err</code></dt>
1482               <dd>Number of CRC errors.</dd>
1483               <dt><code>rx_errors</code></dt>
1484               <dd>
1485                 Total number of receive errors, greater than or equal
1486                 to the sum of the above.
1487               </dd>
1488             </dl>
1489           </li>
1490           <li>
1491             Transmit errors:
1492             <dl>
1493               <dt><code>tx_dropped</code></dt>
1494               <dd>Number of packets dropped by TX.</dd>
1495               <dt><code>collisions</code></dt>
1496               <dd>Number of collisions.</dd>
1497               <dt><code>tx_errors</code></dt>
1498               <dd>
1499                 Total number of transmit errors, greater
1500                 than or equal to the sum of the above.
1501               </dd>
1502             </dl>
1503           </li>
1504         </ul>
1505       </column>
1506     </group>
1507   </table>
1508
1509   <table name="QoS" title="Quality of Service configuration">
1510     <p>Quality of Service (QoS) configuration for each Port that
1511       references it.</p>
1512
1513     <column name="type">
1514       <p>The type of QoS to implement.  The <ref table="Open_vSwitch"
1515         column="capabilities"/> column in the <ref table="Open_vSwitch"/> table
1516         identifies the types that a switch actually supports.  The currently
1517         defined types are listed below:</p>
1518       <dl>
1519         <dt><code>linux-htb</code></dt>
1520         <dd>
1521           Linux ``hierarchy token bucket'' classifier.  See tc-htb(8) (also at
1522           <code>http://linux.die.net/man/8/tc-htb</code>) and the HTB manual
1523           (<code>http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm</code>)
1524           for information on how this classifier works and how to configure it.
1525         </dd>
1526       </dl>
1527       <dl>
1528         <dt><code>linux-hfsc</code></dt>
1529         <dd>
1530           Linux "Hierarchical Fair Service Curve" classifier.
1531           See <code>http://linux-ip.net/articles/hfsc.en/</code> for
1532           information on how this classifier works.
1533         </dd>
1534       </dl>
1535     </column>
1536
1537     <column name="queues">
1538       <p>A map from queue numbers to <ref table="Queue"/> records.  The
1539         supported range of queue numbers depend on <ref column="type"/>.  The
1540         queue numbers are the same as the <code>queue_id</code> used in
1541         OpenFlow in <code>struct ofp_action_enqueue</code> and other
1542         structures.  Queue 0 is used by OpenFlow output actions that do not
1543         specify a specific queue.</p>
1544
1545       <p>
1546         Queue 0 is the ``default queue.''  It is used by OpenFlow output
1547         actions when no specific queue has been set.  Ordinarily <ref
1548         column="queues"/> should include a configuration for queue 0.  When no
1549         configuration for queue 0 is present, a default configuration is used.
1550         (Before version 1.6, Open vSwitch would leave queue 0 unconfigured in
1551         this case.  With some queuing disciplines, this dropped all packets
1552         destined for the default queue.)
1553       </p>
1554     </column>
1555
1556     <column name="other_config">
1557       <p>Key-value pairs for configuring QoS features that depend on
1558         <ref column="type"/>.</p>
1559       <p>The <code>linux-htb</code> and <code>linux-hfsc</code> classes support
1560           the following key-value pairs:</p>
1561       <dl>
1562         <dt><code>max-rate</code></dt>
1563         <dd>Maximum rate shared by all queued traffic, in bit/s.
1564           Optional.  If not specified, for physical interfaces, the
1565           default is the link rate.  For other interfaces or if the
1566           link rate cannot be determined, the default is currently 100
1567           Mbps.</dd>
1568       </dl>
1569     </column>
1570
1571     <column name="external_ids">
1572       Key-value pairs for use by external frameworks that integrate with Open
1573       vSwitch, rather than by Open vSwitch itself.  System integrators should
1574       either use the Open vSwitch development mailing list to coordinate on
1575       common key-value definitions, or choose key names that are likely to be
1576       unique.  No common key-value pairs are currently defined.
1577     </column>
1578   </table>
1579
1580   <table name="Queue" title="QoS output queue.">
1581     <p>A configuration for a port output queue, used in configuring Quality of
1582       Service (QoS) features.  May be referenced by <ref column="queues"
1583       table="QoS"/> column in <ref table="QoS"/> table.</p>
1584
1585     <column name="other_config">
1586       <p>Key-value pairs for configuring the output queue.  The supported
1587         key-value pairs and their meanings depend on the <ref column="type"/>
1588         of the <ref column="QoS"/> records that reference this row.</p>
1589       <p>The key-value pairs defined for <ref table="QoS"/> <ref table="QoS"
1590         column="type"/> of <code>min-rate</code> are:</p>
1591       <dl>
1592         <dt><code>min-rate</code></dt>
1593         <dd>Minimum guaranteed bandwidth, in bit/s.  Required.  The
1594           floor value is 1500 bytes/s (12,000 bit/s).</dd>
1595       </dl>
1596       <p>The key-value pairs defined for <ref table="QoS"/> <ref table="QoS"
1597         column="type"/> of <code>linux-htb</code> are:</p>
1598       <dl>
1599         <dt><code>min-rate</code></dt>
1600         <dd>Minimum guaranteed bandwidth, in bit/s.</dd>
1601         <dt><code>max-rate</code></dt>
1602         <dd>Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
1603           queue's rate will not be allowed to exceed the specified value, even
1604           if excess bandwidth is available.  If unspecified, defaults to no
1605           limit.</dd>
1606         <dt><code>burst</code></dt>
1607         <dd>Burst size, in bits.  This is the maximum amount of ``credits''
1608           that a queue can accumulate while it is idle.  Optional.  Details of
1609           the <code>linux-htb</code> implementation require a minimum burst
1610           size, so a too-small <code>burst</code> will be silently
1611           ignored.</dd>
1612         <dt><code>priority</code></dt>
1613         <dd>A nonnegative 32-bit integer.  Defaults to 0 if
1614           unspecified.  A queue with a smaller <code>priority</code>
1615           will receive all the excess bandwidth that it can use before
1616           a queue with a larger value receives any.  Specific priority
1617           values are unimportant; only relative ordering matters.</dd>
1618       </dl>
1619       <p>The key-value pairs defined for <ref table="QoS"/> <ref table="QoS"
1620         column="type"/> of <code>linux-hfsc</code> are:</p>
1621       <dl>
1622         <dt><code>min-rate</code></dt>
1623         <dd>Minimum guaranteed bandwidth, in bit/s.</dd>
1624         <dt><code>max-rate</code></dt>
1625         <dd>Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
1626           queue's rate will not be allowed to exceed the specified value, even
1627           if excess bandwidth is available.  If unspecified, defaults to no
1628           limit.</dd>
1629       </dl>
1630     </column>
1631
1632     <column name="external_ids">
1633       Key-value pairs for use by external frameworks that integrate with Open
1634       vSwitch, rather than by Open vSwitch itself.  System integrators should
1635       either use the Open vSwitch development mailing list to coordinate on
1636       common key-value definitions, or choose key names that are likely to be
1637       unique.  No common key-value pairs are currently defined.
1638     </column>
1639   </table>
1640
1641   <table name="Mirror" title="Port mirroring (SPAN/RSPAN).">
1642     <p>A port mirror within a <ref table="Bridge"/>.</p>
1643     <p>A port mirror configures a bridge to send selected frames to special
1644       ``mirrored'' ports, in addition to their normal destinations.  Mirroring
1645       traffic may also be referred to as SPAN or RSPAN, depending on the
1646       mechanism used for delivery.</p>
1647
1648     <column name="name">
1649       Arbitrary identifier for the <ref table="Mirror"/>.
1650     </column>
1651
1652     <group title="Selecting Packets for Mirroring">
1653       <p>
1654         To be selected for mirroring, a given packet must enter or leave the
1655         bridge through a selected port and it must also be in one of the
1656         selected VLANs.
1657       </p>
1658
1659       <column name="select_all">
1660         If true, every packet arriving or departing on any port is
1661         selected for mirroring.
1662       </column>
1663
1664       <column name="select_dst_port">
1665         Ports on which departing packets are selected for mirroring.
1666       </column>
1667
1668       <column name="select_src_port">
1669         Ports on which arriving packets are selected for mirroring.
1670       </column>
1671
1672       <column name="select_vlan">
1673         VLANs on which packets are selected for mirroring.  An empty set
1674         selects packets on all VLANs.
1675       </column>
1676     </group>
1677
1678     <group title="Mirroring Destination Configuration">
1679       <p>
1680         These columns are mutually exclusive.  Exactly one of them must be
1681         nonempty.
1682       </p>
1683
1684       <column name="output_port">
1685         <p>Output port for selected packets, if nonempty.</p>
1686         <p>Specifying a port for mirror output reserves that port exclusively
1687           for mirroring.  No frames other than those selected for mirroring
1688           will be forwarded to the port, and any frames received on the port
1689           will be discarded.</p>
1690         <p>This type of mirroring is sometimes called SPAN.</p>
1691       </column>
1692
1693       <column name="output_vlan">
1694         <p>Output VLAN for selected packets, if nonempty.</p>
1695         <p>The frames will be sent out all ports that trunk
1696           <ref column="output_vlan"/>, as well as any ports with implicit VLAN
1697           <ref column="output_vlan"/>.  When a mirrored frame is sent out a
1698           trunk port, the frame's VLAN tag will be set to
1699           <ref column="output_vlan"/>, replacing any existing tag; when it is
1700           sent out an implicit VLAN port, the frame will not be tagged.  This
1701           type of mirroring is sometimes called RSPAN.</p>
1702         <p>
1703           The following destination MAC addresses will not be mirrored to a
1704           VLAN to avoid confusing switches that interpret the protocols that
1705           they represent:
1706         </p>
1707         <dl>
1708           <dt><code>01:80:c2:00:00:00</code></dt>
1709           <dd>IEEE 802.1D Spanning Tree Protocol (STP).</dd>
1710
1711           <dt><code>01:80:c2:00:00:01</code></dt>
1712           <dd>IEEE Pause frame.</dd>
1713
1714           <dt><code>01:80:c2:00:00:0<var>x</var></code></dt>
1715           <dd>Other reserved protocols.</dd>
1716
1717           <dt><code>01:00:0c:cc:cc:cc</code></dt>
1718           <dd>
1719             Cisco Discovery Protocol (CDP), VLAN Trunking Protocol (VTP),
1720             Dynamic Trunking Protocol (DTP), Port Aggregation Protocol (PAgP),
1721             and others.
1722           </dd>
1723
1724           <dt><code>01:00:0c:cc:cc:cd</code></dt>
1725           <dd>Cisco Shared Spanning Tree Protocol PVSTP+.</dd>
1726
1727           <dt><code>01:00:0c:cd:cd:cd</code></dt>
1728           <dd>Cisco STP Uplink Fast.</dd>
1729
1730           <dt><code>01:00:0c:00:00:00</code></dt>
1731           <dd>Cisco Inter Switch Link.</dd>
1732         </dl>
1733         <p><em>Please note:</em> Mirroring to a VLAN can disrupt a network that
1734           contains unmanaged switches.  Consider an unmanaged physical switch
1735           with two ports: port 1, connected to an end host, and port 2,
1736           connected to an Open vSwitch configured to mirror received packets
1737           into VLAN 123 on port 2.  Suppose that the end host sends a packet on
1738           port 1 that the physical switch forwards to port 2.  The Open vSwitch
1739           forwards this packet to its destination and then reflects it back on
1740           port 2 in VLAN 123.  This reflected packet causes the unmanaged
1741           physical switch to replace the MAC learning table entry, which
1742           correctly pointed to port 1, with one that incorrectly points to port
1743           2.  Afterward, the physical switch will direct packets destined for
1744           the end host to the Open vSwitch on port 2, instead of to the end
1745           host on port 1, disrupting connectivity.  If mirroring to a VLAN is
1746           desired in this scenario, then the physical switch must be replaced
1747           by one that learns Ethernet addresses on a per-VLAN basis.  In
1748           addition, learning should be disabled on the VLAN containing mirrored
1749           traffic. If this is not done then intermediate switches will learn
1750           the MAC address of each end host from the mirrored traffic.  If
1751           packets being sent to that end host are also mirrored, then they will
1752           be dropped since the switch will attempt to send them out the input
1753           port. Disabling learning for the VLAN will cause the switch to
1754           correctly send the packet out all ports configured for that VLAN.  If
1755           Open vSwitch is being used as an intermediate switch, learning can be
1756           disabled by adding the mirrored VLAN to <ref column="flood_vlans"/>
1757           in the appropriate <ref table="Bridge"/> table or tables.</p>
1758       </column>
1759     </group>
1760
1761     <group title="Other Features">
1762       <column name="external_ids">
1763         Key-value pairs for use by external frameworks that integrate with Open
1764         vSwitch, rather than by Open vSwitch itself.  System integrators should
1765         either use the Open vSwitch development mailing list to coordinate on
1766         common key-value definitions, or choose key names that are likely to be
1767         unique.  No common key-value pairs are currently defined.
1768       </column>
1769     </group>
1770   </table>
1771
1772   <table name="Controller" title="OpenFlow controller configuration.">
1773     <p>An OpenFlow controller.</p>
1774
1775     <p>
1776       Open vSwitch supports two kinds of OpenFlow controllers:
1777     </p>
1778
1779     <dl>
1780       <dt>Primary controllers</dt>
1781       <dd>
1782         <p>
1783           This is the kind of controller envisioned by the OpenFlow 1.0
1784           specification.  Usually, a primary controller implements a network
1785           policy by taking charge of the switch's flow table.
1786         </p>
1787
1788         <p>
1789           Open vSwitch initiates and maintains persistent connections to
1790           primary controllers, retrying the connection each time it fails or
1791           drops.  The <ref table="Bridge" column="fail_mode"/> column in the
1792           <ref table="Bridge"/> table applies to primary controllers.
1793         </p>
1794
1795         <p>
1796           Open vSwitch permits a bridge to have any number of primary
1797           controllers.  When multiple controllers are configured, Open
1798           vSwitch connects to all of them simultaneously.  Because
1799           OpenFlow 1.0 does not specify how multiple controllers
1800           coordinate in interacting with a single switch, more than
1801           one primary controller should be specified only if the
1802           controllers are themselves designed to coordinate with each
1803           other.  (The Nicira-defined <code>NXT_ROLE</code> OpenFlow
1804           vendor extension may be useful for this.)
1805         </p>
1806       </dd>
1807       <dt>Service controllers</dt>
1808       <dd>
1809         <p>
1810           These kinds of OpenFlow controller connections are intended for
1811           occasional support and maintenance use, e.g. with
1812           <code>ovs-ofctl</code>.  Usually a service controller connects only
1813           briefly to inspect or modify some of a switch's state.
1814         </p>
1815
1816         <p>
1817           Open vSwitch listens for incoming connections from service
1818           controllers.  The service controllers initiate and, if necessary,
1819           maintain the connections from their end.  The <ref table="Bridge"
1820           column="fail_mode"/> column in the <ref table="Bridge"/> table does
1821           not apply to service controllers.
1822         </p>
1823
1824         <p>
1825           Open vSwitch supports configuring any number of service controllers.
1826         </p>
1827       </dd>
1828     </dl>
1829
1830     <p>
1831       The <ref column="target"/> determines the type of controller.
1832     </p>
1833
1834     <group title="Core Features">
1835       <column name="target">
1836         <p>Connection method for controller.</p>
1837         <p>
1838           The following connection methods are currently supported for primary
1839           controllers:
1840         </p>
1841         <dl>
1842           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
1843           <dd>
1844             <p>The specified SSL <var>port</var> (default: 6633) on the host at
1845             the given <var>ip</var>, which must be expressed as an IP address
1846             (not a DNS name).  The <ref table="Open_vSwitch" column="ssl"/>
1847             column in the <ref table="Open_vSwitch"/> table must point to a
1848             valid SSL configuration when this form is used.</p>
1849             <p>SSL support is an optional feature that is not always built as
1850               part of Open vSwitch.</p>
1851           </dd>
1852           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
1853           <dd>The specified TCP <var>port</var> (default: 6633) on the host at
1854             the given <var>ip</var>, which must be expressed as an IP address
1855             (not a DNS name).</dd>
1856         </dl>
1857         <p>
1858           The following connection methods are currently supported for service
1859           controllers:
1860         </p>
1861         <dl>
1862           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
1863           <dd>
1864             <p>
1865               Listens for SSL connections on the specified TCP <var>port</var>
1866               (default: 6633).  If <var>ip</var>, which must be expressed as an
1867               IP address (not a DNS name), is specified, then connections are
1868               restricted to the specified local IP address.
1869             </p>
1870             <p>
1871               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
1872               table="Open_vSwitch"/> table must point to a valid SSL
1873               configuration when this form is used.
1874             </p>
1875             <p>SSL support is an optional feature that is not always built as
1876               part of Open vSwitch.</p>
1877           </dd>
1878           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
1879           <dd>
1880             Listens for connections on the specified TCP <var>port</var>
1881             (default: 6633).  If <var>ip</var>, which must be expressed as an
1882             IP address (not a DNS name), is specified, then connections are
1883             restricted to the specified local IP address.
1884           </dd>
1885         </dl>
1886         <p>When multiple controllers are configured for a single bridge, the
1887           <ref column="target"/> values must be unique.  Duplicate
1888           <ref column="target"/> values yield unspecified results.</p>
1889       </column>
1890
1891       <column name="connection_mode">
1892         <p>If it is specified, this setting must be one of the following
1893         strings that describes how Open vSwitch contacts this OpenFlow
1894         controller over the network:</p>
1895
1896         <dl>
1897           <dt><code>in-band</code></dt>
1898           <dd>In this mode, this controller's OpenFlow traffic travels over the
1899             bridge associated with the controller.  With this setting, Open
1900             vSwitch allows traffic to and from the controller regardless of the
1901             contents of the OpenFlow flow table.  (Otherwise, Open vSwitch
1902             would never be able to connect to the controller, because it did
1903             not have a flow to enable it.)  This is the most common connection
1904             mode because it is not necessary to maintain two independent
1905             networks.</dd>
1906           <dt><code>out-of-band</code></dt>
1907           <dd>In this mode, OpenFlow traffic uses a control network separate
1908             from the bridge associated with this controller, that is, the
1909             bridge does not use any of its own network devices to communicate
1910             with the controller.  The control network must be configured
1911             separately, before or after <code>ovs-vswitchd</code> is started.
1912           </dd>
1913         </dl>
1914
1915         <p>If not specified, the default is implementation-specific.</p>
1916       </column>
1917     </group>
1918
1919     <group title="Controller Failure Detection and Handling">
1920       <column name="max_backoff">
1921         Maximum number of milliseconds to wait between connection attempts.
1922         Default is implementation-specific.
1923       </column>
1924
1925       <column name="inactivity_probe">
1926         Maximum number of milliseconds of idle time on connection to
1927         controller before sending an inactivity probe message.  If Open
1928         vSwitch does not communicate with the controller for the specified
1929         number of seconds, it will send a probe.  If a response is not
1930         received for the same additional amount of time, Open vSwitch
1931         assumes the connection has been broken and attempts to reconnect.
1932         Default is implementation-specific.  A value of 0 disables
1933         inactivity probes.
1934       </column>
1935     </group>
1936
1937     <group title="OpenFlow Rate Limiting">
1938         <column name="controller_rate_limit">
1939           <p>The maximum rate at which packets in unknown flows will be
1940             forwarded to the OpenFlow controller, in packets per second.  This
1941             feature prevents a single bridge from overwhelming the controller.
1942             If not specified, the default is implementation-specific.</p>
1943           <p>In addition, when a high rate triggers rate-limiting, Open
1944             vSwitch queues controller packets for each port and transmits
1945             them to the controller at the configured rate.  The number of
1946             queued packets is limited by
1947             the <ref column="controller_burst_limit"/> value.  The packet
1948             queue is shared fairly among the ports on a bridge.</p><p>Open
1949             vSwitch maintains two such packet rate-limiters per bridge.
1950             One of these applies to packets sent up to the controller
1951             because they do not correspond to any flow.  The other applies
1952             to packets sent up to the controller by request through flow
1953             actions. When both rate-limiters are filled with packets, the
1954             actual rate that packets are sent to the controller is up to
1955             twice the specified rate.</p>
1956         </column>
1957
1958         <column name="controller_burst_limit">
1959           In conjunction with <ref column="controller_rate_limit"/>,
1960           the maximum number of unused packet credits that the bridge will
1961           allow to accumulate, in packets.  If not specified, the default
1962           is implementation-specific.
1963         </column>
1964     </group>
1965
1966     <group title="Additional In-Band Configuration">
1967       <p>These values are considered only in in-band control mode (see
1968         <ref column="connection_mode"/>).</p>
1969
1970       <p>When multiple controllers are configured on a single bridge, there
1971         should be only one set of unique values in these columns.  If different
1972         values are set for these columns in different controllers, the effect
1973         is unspecified.</p>
1974
1975       <column name="local_ip">
1976         The IP address to configure on the local port,
1977         e.g. <code>192.168.0.123</code>.  If this value is unset, then
1978         <ref column="local_netmask"/> and <ref column="local_gateway"/> are
1979         ignored.
1980       </column>
1981
1982       <column name="local_netmask">
1983         The IP netmask to configure on the local port,
1984         e.g. <code>255.255.255.0</code>.  If <ref column="local_ip"/> is set
1985         but this value is unset, then the default is chosen based on whether
1986         the IP address is class A, B, or C.
1987       </column>
1988
1989       <column name="local_gateway">
1990         The IP address of the gateway to configure on the local port, as a
1991         string, e.g. <code>192.168.0.1</code>.  Leave this column unset if
1992         this network has no gateway.
1993       </column>
1994     </group>
1995
1996     <group title="Other Features">
1997       <column name="external_ids">
1998         Key-value pairs for use by external frameworks that integrate with Open
1999         vSwitch, rather than by Open vSwitch itself.  System integrators should
2000         either use the Open vSwitch development mailing list to coordinate on
2001         common key-value definitions, or choose key names that are likely to be
2002         unique.  No common key-value pairs are currently defined.
2003       </column>
2004     </group>
2005
2006     <group title="Controller Status">
2007       <column name="is_connected">
2008         <code>true</code> if currently connected to this controller,
2009         <code>false</code> otherwise.
2010       </column>
2011
2012       <column name="role">
2013         <p>The level of authority this controller has on the associated
2014           bridge. Possible values are:</p>
2015         <dl>
2016           <dt><code>other</code></dt>
2017           <dd>Allows the controller access to all OpenFlow features.</dd>
2018           <dt><code>master</code></dt>
2019           <dd>Equivalent to <code>other</code>, except that there may be at
2020             most one master controller at a time.  When a controller configures
2021             itself as <code>master</code>, any existing master is demoted to
2022             the <code>slave</code>role.</dd>
2023           <dt><code>slave</code></dt>
2024           <dd>Allows the controller read-only access to OpenFlow features.
2025             Attempts to modify the flow table will be rejected with an
2026             error.  Slave controllers do not receive OFPT_PACKET_IN or
2027             OFPT_FLOW_REMOVED messages, but they do receive OFPT_PORT_STATUS
2028             messages.</dd>
2029         </dl>
2030       </column>
2031
2032       <column name="status">
2033         <p>Key-value pairs that report controller status.</p>
2034         <dl>
2035           <dt><code>last_error</code></dt>
2036           <dd>A human-readable description of the last error on the connection
2037             to the controller; i.e. <code>strerror(errno)</code>.  This key
2038             will exist only if an error has occurred.</dd>
2039           <dt><code>state</code></dt>
2040           <dd>The state of the connection to the controller.  Possible values
2041             are: <code>VOID</code> (connection is disabled),
2042             <code>BACKOFF</code> (attempting to reconnect at an increasing
2043             period), <code>CONNECTING</code> (attempting to connect),
2044             <code>ACTIVE</code> (connected, remote host responsive), and
2045             <code>IDLE</code> (remote host idle, sending keep-alive).  These
2046             values may change in the future.  They are provided only for human
2047             consumption.</dd>
2048           <dt><code>sec_since_connect</code></dt>
2049           <dd>The amount of time since this controller last successfully
2050             connected to the switch (in seconds). Value is empty if controller
2051             has never successfully connected.</dd>
2052           <dt><code>sec_since_disconnect</code></dt>
2053           <dd>The amount of time since this controller last disconnected from
2054             the switch (in seconds). Value is empty if controller has never
2055             disconnected.</dd>
2056         </dl>
2057       </column>
2058     </group>
2059   </table>
2060
2061   <table name="Manager" title="OVSDB management connection.">
2062     <p>
2063       Configuration for a database connection to an Open vSwitch database
2064       (OVSDB) client.
2065     </p>
2066
2067     <p>
2068       This table primarily configures the Open vSwitch database
2069       (<code>ovsdb-server</code>), not the Open vSwitch switch
2070       (<code>ovs-vswitchd</code>).  The switch does read the table to determine
2071       what connections should be treated as in-band.
2072     </p>
2073
2074     <p>
2075       The Open vSwitch database server can initiate and maintain active
2076       connections to remote clients.  It can also listen for database
2077       connections.
2078     </p>
2079
2080     <group title="Core Features">
2081       <column name="target">
2082         <p>Connection method for managers.</p>
2083         <p>
2084           The following connection methods are currently supported:
2085         </p>
2086         <dl>
2087           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2088           <dd>
2089             <p>
2090               The specified SSL <var>port</var> (default: 6632) on the host at
2091               the given <var>ip</var>, which must be expressed as an IP address
2092               (not a DNS name).  The <ref table="Open_vSwitch" column="ssl"/>
2093               column in the <ref table="Open_vSwitch"/> table must point to a
2094               valid SSL configuration when this form is used.
2095             </p>
2096             <p>
2097               SSL support is an optional feature that is not always built as
2098               part of Open vSwitch.
2099             </p>
2100           </dd>
2101
2102           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
2103           <dd>
2104             The specified TCP <var>port</var> (default: 6632) on the host at
2105             the given <var>ip</var>, which must be expressed as an IP address
2106             (not a DNS name).
2107           </dd>
2108           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2109           <dd>
2110             <p>
2111               Listens for SSL connections on the specified TCP <var>port</var>
2112               (default: 6632).  If <var>ip</var>, which must be expressed as an
2113               IP address (not a DNS name), is specified, then connections are
2114               restricted to the specified local IP address.
2115             </p>
2116             <p>
2117               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
2118               table="Open_vSwitch"/> table must point to a valid SSL
2119               configuration when this form is used.
2120             </p>
2121             <p>
2122               SSL support is an optional feature that is not always built as
2123               part of Open vSwitch.
2124             </p>
2125           </dd>
2126           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
2127           <dd>
2128             Listens for connections on the specified TCP <var>port</var>
2129             (default: 6632).  If <var>ip</var>, which must be expressed as an
2130             IP address (not a DNS name), is specified, then connections are
2131             restricted to the specified local IP address.
2132           </dd>
2133         </dl>
2134         <p>When multiple managers are configured, the <ref column="target"/>
2135         values must be unique.  Duplicate <ref column="target"/> values yield
2136         unspecified results.</p>
2137       </column>
2138
2139       <column name="connection_mode">
2140         <p>
2141           If it is specified, this setting must be one of the following strings
2142           that describes how Open vSwitch contacts this OVSDB client over the
2143           network:
2144         </p>
2145
2146         <dl>
2147           <dt><code>in-band</code></dt>
2148           <dd>
2149             In this mode, this connection's traffic travels over a bridge
2150             managed by Open vSwitch.  With this setting, Open vSwitch allows
2151             traffic to and from the client regardless of the contents of the
2152             OpenFlow flow table.  (Otherwise, Open vSwitch would never be able
2153             to connect to the client, because it did not have a flow to enable
2154             it.)  This is the most common connection mode because it is not
2155             necessary to maintain two independent networks.
2156           </dd>
2157           <dt><code>out-of-band</code></dt>
2158           <dd>
2159             In this mode, the client's traffic uses a control network separate
2160             from that managed by Open vSwitch, that is, Open vSwitch does not
2161             use any of its own network devices to communicate with the client.
2162             The control network must be configured separately, before or after
2163             <code>ovs-vswitchd</code> is started.
2164           </dd>
2165         </dl>
2166
2167         <p>
2168           If not specified, the default is implementation-specific.
2169         </p>
2170       </column>
2171     </group>
2172
2173     <group title="Client Failure Detection and Handling">
2174       <column name="max_backoff">
2175         Maximum number of milliseconds to wait between connection attempts.
2176         Default is implementation-specific.
2177       </column>
2178
2179       <column name="inactivity_probe">
2180         Maximum number of milliseconds of idle time on connection to the client
2181         before sending an inactivity probe message.  If Open vSwitch does not
2182         communicate with the client for the specified number of seconds, it
2183         will send a probe.  If a response is not received for the same
2184         additional amount of time, Open vSwitch assumes the connection has been
2185         broken and attempts to reconnect.  Default is implementation-specific.
2186         A value of 0 disables inactivity probes.
2187       </column>
2188     </group>
2189
2190     <group title="Other Features">
2191       <column name="external_ids">
2192         Key-value pairs for use by external frameworks that integrate with Open
2193         vSwitch, rather than by Open vSwitch itself.  System integrators should
2194         either use the Open vSwitch development mailing list to coordinate on
2195         common key-value definitions, or choose key names that are likely to be
2196         unique.  No common key-value pairs are currently defined.
2197       </column>
2198     </group>
2199
2200     <group title="Status">
2201       <column name="is_connected">
2202         <code>true</code> if currently connected to this manager,
2203         <code>false</code> otherwise.
2204       </column>
2205
2206       <column name="status">
2207         <p>Key-value pairs that report manager status.</p>
2208         <dl>
2209           <dt><code>last_error</code></dt>
2210           <dd>A human-readable description of the last error on the connection
2211             to the manager; i.e. <code>strerror(errno)</code>.  This key
2212             will exist only if an error has occurred.</dd>
2213         </dl>
2214         <dl>
2215           <dt><code>state</code></dt>
2216           <dd>The state of the connection to the manager.  Possible values
2217             are: <code>VOID</code> (connection is disabled),
2218             <code>BACKOFF</code> (attempting to reconnect at an increasing
2219             period), <code>CONNECTING</code> (attempting to connect),
2220             <code>ACTIVE</code> (connected, remote host responsive), and
2221             <code>IDLE</code> (remote host idle, sending keep-alive).  These
2222             values may change in the future.  They are provided only for human
2223             consumption.</dd>
2224         </dl>
2225         <dl>
2226           <dt><code>sec_since_connect</code></dt>
2227           <dd>The amount of time since this manager last successfully connected
2228             to the database (in seconds). Value is empty if manager has never
2229             successfully connected.</dd>
2230         </dl>
2231         <dl>
2232           <dt><code>sec_since_disconnect</code></dt>
2233           <dd>The amount of time since this manager last disconnected from the
2234             database (in seconds). Value is empty if manager has never
2235             disconnected.</dd>
2236         </dl>
2237         <dl>
2238           <dt><code>locks_held</code></dt>
2239           <dt><code>locks_waiting</code></dt>
2240           <dt><code>locks_lost</code></dt>
2241           <dd>
2242             Space-separated lists of the names of OVSDB locks that the
2243             connection holds, is currently waiting to acquire, or has had
2244             stolen by another OVSDB client, respectively.  Key-value pairs for
2245             lists that would be empty are omitted.
2246           </dd>
2247         </dl>
2248         <dl>
2249           <dt><code>n_connections</code></dt>
2250           <dd>
2251             <p>
2252               When <ref column="target"/> specifies a connection method that
2253               listens for inbound connections (e.g. <code>ptcp:</code> or
2254               <code>pssl:</code>) and more than one connection is actually
2255               active, the value is the number of active connections.
2256               Otherwise, this key-value pair is omitted.
2257             </p>
2258             <p>
2259               When multiple connections are active, status columns and
2260               key-value pairs (other than this one) report the status of one
2261               arbitrarily chosen connection.
2262             </p>
2263           </dd>
2264         </dl>
2265       </column>
2266     </group>
2267   </table>
2268
2269   <table name="NetFlow">
2270     A NetFlow target.  NetFlow is a protocol that exports a number of
2271     details about terminating IP flows, such as the principals involved
2272     and duration.
2273
2274     <column name="targets">
2275       NetFlow targets in the form
2276       <code><var>ip</var>:<var>port</var></code>.  The <var>ip</var>
2277       must be specified numerically, not as a DNS name.
2278     </column>
2279
2280     <column name="engine_id">
2281       Engine ID to use in NetFlow messages.  Defaults to datapath index
2282       if not specified.
2283     </column>
2284
2285     <column name="engine_type">
2286       Engine type to use in NetFlow messages.  Defaults to datapath
2287       index if not specified.
2288     </column>
2289
2290     <column name="active_timeout">
2291       The interval at which NetFlow records are sent for flows that are
2292       still active, in seconds.  A value of <code>0</code> requests the
2293       default timeout (currently 600 seconds); a value of <code>-1</code>
2294       disables active timeouts.
2295     </column>
2296
2297     <column name="add_id_to_interface">
2298       <p>If this column's value is <code>false</code>, the ingress and egress
2299         interface fields of NetFlow flow records are derived from OpenFlow port
2300         numbers.  When it is <code>true</code>, the 7 most significant bits of
2301         these fields will be replaced by the least significant 7 bits of the
2302         engine id.  This is useful because many NetFlow collectors do not
2303         expect multiple switches to be sending messages from the same host, so
2304         they do not store the engine information which could be used to
2305         disambiguate the traffic.</p>
2306       <p>When this option is enabled, a maximum of 508 ports are supported.</p>
2307     </column>
2308
2309     <column name="external_ids">
2310       Key-value pairs for use by external frameworks that integrate with Open
2311       vSwitch, rather than by Open vSwitch itself.  System integrators should
2312       either use the Open vSwitch development mailing list to coordinate on
2313       common key-value definitions, or choose key names that are likely to be
2314       unique.  No common key-value pairs are currently defined.
2315     </column>
2316   </table>
2317
2318   <table name="SSL">
2319     SSL configuration for an Open_vSwitch.
2320
2321     <column name="private_key">
2322       Name of a PEM file containing the private key used as the switch's
2323       identity for SSL connections to the controller.
2324     </column>
2325
2326     <column name="certificate">
2327       Name of a PEM file containing a certificate, signed by the
2328       certificate authority (CA) used by the controller and manager,
2329       that certifies the switch's private key, identifying a trustworthy
2330       switch.
2331     </column>
2332
2333     <column name="ca_cert">
2334       Name of a PEM file containing the CA certificate used to verify
2335       that the switch is connected to a trustworthy controller.
2336     </column>
2337
2338     <column name="bootstrap_ca_cert">
2339       If set to <code>true</code>, then Open vSwitch will attempt to
2340       obtain the CA certificate from the controller on its first SSL
2341       connection and save it to the named PEM file. If it is successful,
2342       it will immediately drop the connection and reconnect, and from then
2343       on all SSL connections must be authenticated by a certificate signed
2344       by the CA certificate thus obtained.  <em>This option exposes the
2345         SSL connection to a man-in-the-middle attack obtaining the initial
2346         CA certificate.</em>  It may still be useful for bootstrapping.
2347     </column>
2348
2349     <column name="external_ids">
2350       Key-value pairs for use by external frameworks that integrate with Open
2351       vSwitch, rather than by Open vSwitch itself.  System integrators should
2352       either use the Open vSwitch development mailing list to coordinate on
2353       common key-value definitions, or choose key names that are likely to be
2354       unique.  No common key-value pairs are currently defined.
2355     </column>
2356   </table>
2357
2358   <table name="sFlow">
2359     <p>An sFlow(R) target.  sFlow is a protocol for remote monitoring
2360       of switches.</p>
2361
2362     <column name="agent">
2363       Name of the network device whose IP address should be reported as the
2364       ``agent address'' to collectors.  If not specified, the IP address
2365       defaults to the <ref table="Controller" column="local_ip"/> in the
2366       collector's <ref table="Controller"/>.  If an agent IP address cannot be
2367       determined either way, sFlow is disabled.
2368     </column>
2369
2370     <column name="header">
2371       Number of bytes of a sampled packet to send to the collector.
2372       If not specified, the default is 128 bytes.
2373     </column>
2374
2375     <column name="polling">
2376       Polling rate in seconds to send port statistics to the collector.
2377       If not specified, defaults to 30 seconds.
2378     </column>
2379
2380     <column name="sampling">
2381       Rate at which packets should be sampled and sent to the collector.
2382       If not specified, defaults to 400, which means one out of 400
2383       packets, on average, will be sent to the collector.
2384     </column>
2385
2386     <column name="targets">
2387       sFlow targets in the form
2388       <code><var>ip</var>:<var>port</var></code>.
2389     </column>
2390
2391     <column name="external_ids">
2392       Key-value pairs for use by external frameworks that integrate with Open
2393       vSwitch, rather than by Open vSwitch itself.  System integrators should
2394       either use the Open vSwitch development mailing list to coordinate on
2395       common key-value definitions, or choose key names that are likely to be
2396       unique.  No common key-value pairs are currently defined.
2397     </column>
2398   </table>
2399
2400   <table name="Capability">
2401     <p>Records in this table describe functionality supported by the hardware
2402       and software platform on which this Open vSwitch is based.  Clients
2403       should not modify this table.</p>
2404
2405     <p>A record in this table is meaningful only if it is referenced by the
2406       <ref table="Open_vSwitch" column="capabilities"/> column in the
2407       <ref table="Open_vSwitch"/> table.  The key used to reference it, called
2408       the record's ``category,'' determines the meanings of the
2409       <ref column="details"/> column.  The following general forms of
2410       categories are currently defined:</p>
2411
2412     <dl>
2413       <dt><code>qos-<var>type</var></code></dt>
2414       <dd><var>type</var> is supported as the value for
2415         <ref column="type" table="QoS"/> in the <ref table="QoS"/> table.
2416       </dd>
2417     </dl>
2418
2419     <column name="details">
2420       <p>Key-value pairs that describe capabilities.  The meaning of the pairs
2421       depends on the category key that the <ref table="Open_vSwitch"
2422       column="capabilities"/> column in the <ref table="Open_vSwitch"/> table
2423       uses to reference this record, as described above.</p>
2424
2425       <p>The presence of a record for category <code>qos-<var>type</var></code>
2426           indicates that the switch supports <var>type</var> as the value of
2427           the <ref table="QoS" column="type"/> column in the <ref table="QoS"/>
2428           table.  The following key-value pairs are defined to further describe
2429           QoS capabilities:</p>
2430
2431       <dl>
2432         <dt><code>n-queues</code></dt>
2433         <dd>Number of supported queues, as a positive integer.  Keys in the
2434           <ref table="QoS" column="queues"/> column for <ref table="QoS"/>
2435           records whose <ref table="QoS" column="type"/> value
2436           equals <var>type</var> must range between 0 and this value minus one,
2437           inclusive.</dd>
2438       </dl>
2439     </column>
2440   </table>
2441 </database>