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