vswitch: Break out XenServer-specific external ids
[sliver-openvswitch.git] / vswitchd / vswitch.xml
1 <database title="Open vSwitch Configuration Database">
2   <p>A database with this schema holds the configuration for one Open
3     vSwitch daemon.  The root of the configuration for the daemon is
4     the <ref table="Open_vSwitch"/> table, which must have exactly one
5     record.  Records in other tables are significant only when they
6     can be reached directly or indirectly from the
7     <ref table="Open_vSwitch"/> table.</p>
8
9   <table name="Open_vSwitch" title="Open vSwitch configuration.">
10     Configuration for an Open vSwitch daemon.  There must be exactly one record
11     in the <ref table="Open_vSwitch"/> table.
12
13     <group title="Configuration">
14       <column name="bridges">
15         Set of bridges managed by the daemon.
16       </column>
17
18       <column name="managers">
19         Remote database clients to which the Open vSwitch's database server
20         should connect or to which it should listen.
21       </column>
22
23       <column name="ssl">
24         SSL used globally by the daemon.
25       </column>
26
27       <column name="external_ids">
28         Key-value pairs for use by external frameworks that integrate
29         with Open vSwitch, rather than by Open vSwitch itself.  System
30         integrators should either use the Open vSwitch development
31         mailing list to coordinate on common key-value definitions, or
32         choose key names that are likely to be unique.  The currently
33         defined common key-value pairs are:
34         <dl>
35           <dt><code>system-type</code></dt>
36           <dd>An identifier for the switch type, such as
37             <code>XenServer</code> or <code>KVM</code>.</dd>
38           <dt><code>system-version</code></dt>
39           <dd>The version of the switch software, such as
40             <code>5.6.0</code> on XenServer.</dd>
41           <dt><code>system-id</code></dt>
42           <dd>A unique identifier for the Open vSwitch's physical host.
43             The form of the identifier depends on the type of the host.
44             On a Citrix XenServer, this will likely be the same as
45             <code>xs-system-uuid</code>.</dd>
46           <dt><code>xs-system-uuid</code></dt>
47           <dd>The Citrix XenServer universally unique identifier for the
48             physical host as displayed by <code>xe host-list</code>.</dd>
49         </dl>
50       </column>
51     </group>
52
53     <group title="Status">
54       <column name="next_cfg">
55         Sequence number for client to increment.  When a client modifies
56         any part of the database configuration and wishes to wait for
57         Open vSwitch to finish applying the changes, it may increment
58         this sequence number.
59       </column>
60
61       <column name="cur_cfg">
62         Sequence number that Open vSwitch sets to the current value of
63         <ref column="next_cfg"/> after it finishes applying a set of
64         configuration changes.
65       </column>
66
67       <column name="capabilities">
68         Describes functionality supported by the hardware and software platform
69         on which this Open vSwitch is based.  Clients should not modify this
70         column.  See the <ref table="Capability"/> description for defined
71         capability categories and the meaning of associated
72         <ref table="Capability"/> records.
73       </column>
74
75       <column name="statistics">
76         <p>
77           Key-value pairs that report statistics about a running Open_vSwitch
78           daemon.  The current implementation updates these counters
79           periodically.  In the future, we plan to, instead, update them only
80           when they are queried (e.g. using an OVSDB <code>select</code>
81           operation) and perhaps at other times, but not on any regular
82           periodic basis.</p>
83         <p>
84           The currently defined key-value pairs are listed below.  Some Open
85           vSwitch implementations may not support some statistics, in which
86           case those key-value pairs are omitted.</p>
87         <dl>
88           <dt><code>load-average</code></dt>
89           <dd>
90             System load average multiplied by 100 and rounded to the nearest
91             integer.</dd>
92         </dl>
93       </column>
94     </group>
95   </table>
96
97   <table name="Bridge">
98     <p>
99       Configuration for a bridge within an
100       <ref table="Open_vSwitch"/>.
101     </p>
102     <p>
103       A <ref table="Bridge"/> record represents an Ethernet switch with one or
104       more ``ports,'' which are the <ref table="Port"/> records pointed to by
105       the <ref table="Bridge"/>'s <ref column="ports"/> column.
106     </p>
107
108     <group title="Core Features">
109       <column name="name">
110         Bridge identifier.  Should be alphanumeric and no more than about 8
111         bytes long.  Must be unique among the names of ports, interfaces, and
112         bridges on a host.
113       </column>
114
115       <column name="ports">
116         Ports included in the bridge.
117       </column>
118
119       <column name="mirrors">
120         Port mirroring configuration.
121       </column>
122
123       <column name="netflow">
124         NetFlow configuration.
125       </column>
126
127       <column name="sflow">
128         sFlow configuration.
129       </column>
130
131       <column name="flood_vlans">
132         VLAN IDs of VLANs on which MAC address learning should be disabled, so
133         that packets are flooded instead of being sent to specific ports that
134         are believed to contain packets' destination MACs.  This should
135         ordinarily be used to disable MAC learning on VLANs used for mirroring
136         (RSPAN VLANs).  It may also be useful for debugging.
137       </column>
138     </group>
139
140     <group title="OpenFlow Configuration">
141       <column name="controller">
142         OpenFlow controller set.  If unset, then no OpenFlow controllers
143         will be used.
144       </column>
145
146       <column name="fail_mode">
147         <p>When a controller is configured, it is, ordinarily, responsible
148           for setting up all flows on the switch.  Thus, if the connection to
149           the controller fails, no new network connections can be set up.
150           If the connection to the controller stays down long enough,
151           no packets can pass through the switch at all.  This setting
152           determines the switch's response to such a situation.  It may be set
153           to one of the following:
154           <dl>
155             <dt><code>standalone</code></dt>
156             <dd>If no message is received from the controller for three
157               times the inactivity probe interval
158               (see <ref column="inactivity_probe"/>), then Open vSwitch
159               will take over responsibility for setting up flows.  In
160               this mode, Open vSwitch causes the bridge to act like an
161               ordinary MAC-learning switch.  Open vSwitch will continue
162               to retry connecting to the controller in the background
163               and, when the connection succeeds, it will discontinue its
164               standalone behavior.</dd>
165             <dt><code>secure</code></dt>
166             <dd>Open vSwitch will not set up flows on its own when the
167               controller connection fails or when no controllers are
168               defined.  The bridge will continue to retry connecting to
169               any defined controllers forever.</dd>
170           </dl>
171         </p>
172         <p>If this value is unset, the default is implementation-specific.</p>
173         <p>When more than one controller is configured, 
174           <ref column="fail_mode"/> is considered only when none of the
175           configured controllers can be contacted.</p>
176       </column>
177
178       <column name="datapath_id">
179         Reports the OpenFlow datapath ID in use.  Exactly 16 hex
180         digits.  (Setting this column will have no useful effect.  Set
181         <ref column="other_config"/>:<code>other-config</code>
182         instead.)
183       </column>
184     </group>
185
186     <group title="Other Features">
187       <column name="datapath_type">
188         Name of datapath provider.  The kernel datapath has
189         type <code>system</code>.  The userspace datapath has
190         type <code>netdev</code>.
191       </column>
192
193       <column name="external_ids">
194         Key-value pairs for use by external frameworks that integrate
195         with Open vSwitch, rather than by Open vSwitch itself.  System
196         integrators should either use the Open vSwitch development
197         mailing list to coordinate on common key-value definitions, or
198         choose key names that are likely to be unique.  The currently
199         defined key-value pairs are:
200         <dl>
201           <dt><code>bridge-id</code></dt>
202           <dd>A unique identifier of the bridge.  On Citrix XenServer this 
203             will commonly be the same as <code>xs-network-uuids</code>.</dd>
204           <dt><code>xs-network-uuids</code></dt>
205           <dd>Semicolon-delimited set of universally unique identifier(s) for
206             the network with which this bridge is associated on a Citrix
207             XenServer host.  The network identifiers are RFC 4122 UUIDs as
208             displayed by, e.g., <code>xe network-list</code>.</dd>
209         </dl>
210       </column>
211
212       <column name="other_config">
213         Key-value pairs for configuring rarely used bridge
214         features.  The currently defined key-value pairs are:
215         <dl>
216           <dt><code>datapath-id</code></dt>
217           <dd>Exactly 16 hex
218             digits to set the OpenFlow datapath ID to a specific
219             value.</dd>
220           <dt><code>hwaddr</code></dt>
221           <dd>An Ethernet address in the form
222             <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
223             to set the hardware address of the local port and influence the
224             datapath ID.</dd>
225         </dl>
226       </column>
227     </group>
228   </table>
229
230   <table name="Port" table="Port or bond configuration.">
231     <p>A port within a <ref table="Bridge"/>.</p>
232     <p>Most commonly, a port has exactly one ``interface,'' pointed to by its
233       <ref column="interfaces"/> column.  Such a port logically
234       corresponds to a port on a physical Ethernet switch.  A port
235       with more than one interface is a ``bonded port'' (see
236       <ref group="Bonding Configuration"/>).</p>
237     <p>Some properties that one might think as belonging to a port are actually
238       part of the port's <ref table="Interface"/> members.</p>
239
240     <column name="name">
241       Port name.  Should be alphanumeric and no more than about 8
242       bytes long.  May be the same as the interface name, for
243       non-bonded ports.  Must otherwise be unique among the names of
244       ports, interfaces, and bridges on a host.
245     </column>
246
247     <column name="interfaces">
248       The port's interfaces.  If there is more than one, this is a
249       bonded Port.
250     </column>
251
252     <group title="VLAN Configuration">
253       <p>A bridge port must be configured for VLANs in one of two
254         mutually exclusive ways:
255         <ul>
256           <li>A ``trunk port'' has an empty value for <ref
257             column="tag"/>.  Its <ref column="trunks"/> value may be
258             empty or non-empty.</li>
259           <li>An ``implicitly tagged VLAN port'' or ``access port''
260             has an nonempty value for <ref column="tag"/>.  Its
261             <ref column="trunks"/> value must be empty.</li>
262         </ul>
263         If <ref column="trunks"/> and <ref column="tag"/> are both
264         nonempty, the configuration is ill-formed.
265       </p>
266
267       <column name="tag">
268         <p>
269           If this is an access port (see above), the port's implicitly
270           tagged VLAN.  Must be empty if this is a trunk port.
271         </p>
272         <p>
273           Frames arriving on trunk ports will be forwarded to this
274           port only if they are tagged with the given VLAN (or, if
275           <ref column="tag"/> is 0, then if they lack a VLAN header).
276           Frames arriving on other access ports will be forwarded to
277           this port only if they have the same <ref column="tag"/>
278           value.  Frames forwarded to this port will not have an
279           802.1Q header.
280         </p>
281         <p>
282           When a frame with a 802.1Q header that indicates a nonzero
283           VLAN is received on an access port, it is discarded.
284         </p>
285       </column>
286
287       <column name="trunks">
288         <p>
289           If this is a trunk port (see above), the 802.1Q VLAN(s) that
290           this port trunks; if it is empty, then the port trunks all
291           VLANs.  Must be empty if this is an access port.
292         </p>
293         <p>
294           Frames arriving on trunk ports are dropped if they are not
295           in one of the specified VLANs.  For this purpose, packets
296           that have no VLAN header are treated as part of VLAN 0.
297         </p>
298       </column>
299     </group>
300
301     <group title="Bonding Configuration">
302       <p>A port that has more than one interface is a ``bonded port.''
303         Bonding allows for load balancing and fail-over.  Open vSwitch
304         supports ``source load balancing'' (SLB) bonding, which
305         assigns flows to slaves based on source MAC address, with
306         periodic rebalancing as traffic patterns change.  This form of
307         bonding does not require 802.3ad or other special support from
308         the upstream switch to which the slave devices are
309         connected.</p>
310
311       <p>These columns apply only to bonded ports.  Their values are
312         otherwise ignored.</p>
313
314       <column name="bond_updelay">
315         <p>For a bonded port, the number of milliseconds for which carrier must
316           stay up on an interface before the interface is considered to be up.
317           Specify <code>0</code> to enable the interface immediately.</p>
318         <p>This setting is honored only when at least one bonded interface is
319           already enabled.  When no interfaces are enabled, then the first bond
320           interface to come up is enabled immediately.</p>
321       </column>
322
323       <column name="bond_downdelay">
324         For a bonded port, the number of milliseconds for which carrier must
325         stay down on an interface before the interface is considered to be
326         down.  Specify <code>0</code> to disable the interface immediately.
327       </column>
328
329       <column name="bond_fake_iface">
330         For a bonded port, whether to create a fake internal interface with the
331         name of the port.  Use only for compatibility with legacy software that
332         requires this.
333       </column>
334     </group>
335
336     <group title="Other Features">
337       <column name="qos">
338         Quality of Service configuration for this port.
339       </column>
340       
341       <column name="mac">
342         The MAC address to use for this port for the purpose of choosing the
343         bridge's MAC address.  This column does not necessarily reflect the
344         port's actual MAC address, nor will setting it change the port's actual
345         MAC address.
346       </column>
347
348       <column name="fake_bridge">
349         Does this port represent a sub-bridge for its tagged VLAN within the
350         Bridge?  See ovs-vsctl(8) for more information.
351       </column>
352
353       <column name="external_ids">
354         <p>
355           Key-value pairs for use by external frameworks that integrate with
356           Open vSwitch, rather than by Open vSwitch itself.  System integrators
357           should either use the Open vSwitch development mailing list to
358           coordinate on common key-value definitions, or choose key names that
359           are likely to be unique.
360         </p>
361         <p>
362           No key-value pairs native to <ref table="Port"/> are currently
363           defined.  For fake bridges (see the <ref column="fake_bridge"/>
364           column), external IDs for the fake bridge are defined here by
365           prefixing a <ref table="Bridge"/> <ref table="Bridge"
366           column="external_ids"/> key with <code>fake-bridge-</code>,
367           e.g. <code>fake-bridge-network-uuids</code>.
368         </p>
369       </column>
370
371       <column name="other_config">
372         Key-value pairs for configuring rarely used port features.  The
373         currently defined key-value pairs are:
374         <dl>
375           <dt><code>hwaddr</code></dt>
376           <dd>An Ethernet address in the form
377             <code><var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var></code>.</dd>
378           <dt><code>bond-rebalance-interval</code></dt>
379           <dd>For a bonded port, the number of milliseconds between
380             successive attempts to rebalance the bond, that is, to
381             move source MACs and their flows from one interface on
382             the bond to another in an attempt to keep usage of each
383             interface roughly equal.  The default is 10000 (10
384             seconds), and the minimum is 1000 (1 second).</dd>
385         </dl>
386       </column>
387     </group>
388   </table>
389
390   <table name="Interface" title="One physical network device in a Port.">
391     An interface within a <ref table="Port"/>.
392
393     <group title="Core Features">
394       <column name="name">
395         Interface name.  Should be alphanumeric and no more than about 8 bytes
396         long.  May be the same as the port name, for non-bonded ports.  Must
397         otherwise be unique among the names of ports, interfaces, and bridges
398         on a host.
399       </column>
400
401       <column name="mac">
402         <p>Ethernet address to set for this interface.  If unset then the
403           default MAC address is used:</p>
404         <ul>
405           <li>For the local interface, the default is the lowest-numbered MAC
406             address among the other bridge ports, either the value of the
407             <ref table="Port" column="mac"/> in its <ref table="Port"/> record,
408             if set, or its actual MAC (for bonded ports, the MAC of its slave
409             whose name is first in alphabetical order).  Internal ports and
410             bridge ports that are used as port mirroring destinations (see the
411             <ref table="Mirror"/> table) are ignored.</li>
412           <li>For other internal interfaces, the default MAC is randomly
413             generated.</li>
414           <li>External interfaces typically have a MAC address associated with
415             their hardware.</li>
416         </ul>
417         <p>Some interfaces may not have a software-controllable MAC
418         address.</p>
419       </column>
420
421       <column name="ofport">
422         <p>OpenFlow port number for this interface.  Unlike most columns, this
423           column's value should be set only by Open vSwitch itself.  Other
424           clients should set this column to an empty set (the default) when
425           creating an <ref table="Interface"/>.</p>
426         <p>Open vSwitch populates this column when the port number becomes
427           known.  If the interface is successfully added,
428           <ref column="ofport"/> will be set to a number between 1 and 65535
429           (generally either in the range 1 to 65280, exclusive, or 65534, the
430           port number for the OpenFlow ``local port'').  If the interface
431           cannot be added then Open vSwitch sets this column
432           to -1.</p>
433       </column>
434     </group>
435
436     <group title="System-Specific Details">
437       <column name="type">
438         The interface type, one of:
439         <dl>
440           <dt><code>system</code></dt>
441           <dd>An ordinary network device, e.g. <code>eth0</code> on Linux.
442             Sometimes referred to as ``external interfaces'' since they are
443             generally connected to hardware external to that on which the Open
444             vSwitch is running.  The empty string is a synonym for
445             <code>system</code>.</dd>
446           <dt><code>internal</code></dt>
447           <dd>A simulated network device that sends and receives traffic.  An
448             internal interface whose <ref column="name"/> is the same as its
449             bridge's <ref table="Open_vSwitch" column="name"/> is called the
450             ``local interface.''  It does not make sense to bond an internal
451             interface, so the terms ``port'' and ``interface'' are often used
452             imprecisely for internal interfaces.</dd>
453           <dt><code>tap</code></dt>
454           <dd>A TUN/TAP device managed by Open vSwitch.</dd>
455           <dt><code>gre</code></dt>
456           <dd>An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4
457              tunnel.  Each tunnel must be uniquely identified by the
458              combination of <code>remote_ip</code>, <code>local_ip</code>, and
459              <code>in_key</code>.  Note that if two ports are defined that are
460              the same except one has an optional identifier and the other does
461              not, the more specific one is matched first.  <code>in_key</code>
462              is considered more specific than <code>local_ip</code> if a port
463              defines one and another port defines the other.  The following 
464              options may be specified in the <ref column="options"/> column:
465             <dl>
466               <dt><code>remote_ip</code></dt>
467               <dd>Required.  The tunnel endpoint.</dd>
468             </dl>
469             <dl>
470               <dt><code>local_ip</code></dt>
471               <dd>Optional.  The destination IP that received packets must
472                 match.  Default is to match all addresses.</dd>
473             </dl>
474             <dl>
475               <dt><code>in_key</code></dt>
476               <dd>Optional.  The GRE key that received packets must contain.
477                 It may either be a 32-bit number (no key and a key of 0 are
478                 treated as equivalent) or the word <code>flow</code>.  If
479                 <code>flow</code> is specified then any key will be accepted
480                 and the key will be placed in the <code>tun_id</code> field
481                 for matching in the flow table.  The ovs-ofctl manual page
482                 contains additional information about matching fields in
483                 OpenFlow flows.  Default is no key.</dd>
484             </dl>
485             <dl>
486               <dt><code>out_key</code></dt>
487               <dd>Optional.  The GRE key to be set on outgoing packets.  It may
488                 either be a 32-bit number or the word <code>flow</code>.  If
489                 <code>flow</code> is specified then the key may be set using
490                 the <code>set_tunnel</code> Nicira OpenFlow vendor extension (0
491                 is used in the absence of an action).  The ovs-ofctl manual
492                 page contains additional information about the Nicira OpenFlow
493                 vendor extensions.  Default is no key.</dd>
494             </dl>
495             <dl>
496               <dt><code>key</code></dt>
497               <dd>Optional.  Shorthand to set <code>in_key</code> and
498                 <code>out_key</code> at the same time.</dd>
499             </dl>
500             <dl>
501               <dt><code>tos</code></dt>
502               <dd>Optional.  The value of the ToS bits to be set on the
503                 encapsulating packet.  It may also be the word
504                 <code>inherit</code>, in which case the ToS will be copied from
505                 the inner packet if it is IPv4 or IPv6 (otherwise it will be
506                 0).  Note that the ECN fields are always inherited.  Default is
507                 0.</dd>
508             </dl>
509             <dl>
510               <dt><code>ttl</code></dt>
511               <dd>Optional.  The TTL to be set on the encapsulating packet.
512                 It may also be the word <code>inherit</code>, in which case the
513                 TTL will be copied from the inner packet if it is IPv4 or IPv6
514                 (otherwise it will be the system default, typically 64).
515                 Default is the system default TTL.</dd>
516             </dl>
517             <dl>
518               <dt><code>csum</code></dt>
519               <dd>Optional.  Compute GRE checksums on outgoing packets.
520                 Checksums present on incoming packets will be validated
521                 regardless of this setting.  Note that GRE checksums
522                 impose a significant performance penalty as they cover the
523                 entire packet.  As the contents of the packet is typically
524                 covered by L3 and L4 checksums, this additional checksum only
525                 adds value for the GRE and encapsulated Ethernet headers.
526                 Default is disabled, set to <code>true</code> to enable.</dd>
527             </dl>
528             <dl>
529               <dt><code>pmtud</code></dt>
530               <dd>Optional.  Enable tunnel path MTU discovery.  If enabled
531                 ``ICMP destination unreachable - fragmentation'' needed
532                 messages will be generated for IPv4 packets with the DF bit set
533                 and IPv6 packets above the minimum MTU if the packet size
534                 exceeds the path MTU minus the size of the tunnel headers.  It
535                 also forces the encapsulating packet DF bit to be set (it is
536                 always set if the inner packet implies path MTU discovery).
537                 Note that this option causes behavior that is typically
538                 reserved for routers and therefore is not entirely in
539                 compliance with the IEEE 802.1D specification for bridges.
540                 Default is enabled, set to <code>false</code> to disable.</dd>
541             </dl>
542           </dd>
543           <dt><code>capwap</code></dt>
544           <dd>Ethernet tunneling over the UDP transport portion of CAPWAP
545              (RFC 5415).  This allows interoperability with certain switches
546              where GRE is not available.  Note that only the tunneling component
547              of the protocol is implemented.  Due to the non-standard use of
548              CAPWAP, UDP ports 58881 and 58882 are used as the source and
549              destinations ports respectivedly.  Each tunnel must be uniquely
550              identified by the combination of <code>remote_ip</code> and
551              <code>local_ip</code>.  If two ports are defined that are the same
552              except one includes <code>local_ip</code> and the other does not,
553              the more specific one is matched first.  CAPWAP support is not
554              available on all platforms.  Currently it is only supported in the
555              Linux kernel module with kernel versions >= 2.6.25.  The following
556              options may be specified in the <ref column="options"/> column:
557             <dl>
558               <dt><code>remote_ip</code></dt>
559               <dd>Required.  The tunnel endpoint.</dd>
560             </dl>
561             <dl>
562               <dt><code>local_ip</code></dt>
563               <dd>Optional.  The destination IP that received packets must
564                 match.  Default is to match all addresses.</dd>
565             </dl>
566             <dl>
567               <dt><code>tos</code></dt>
568               <dd>Optional.  The value of the ToS bits to be set on the
569                 encapsulating packet.  It may also be the word
570                 <code>inherit</code>, in which case the ToS will be copied from
571                 the inner packet if it is IPv4 or IPv6 (otherwise it will be
572                 0).  Note that the ECN fields are always inherited.  Default is
573                 0.</dd>
574             </dl>
575             <dl>
576               <dt><code>ttl</code></dt>
577               <dd>Optional.  The TTL to be set on the encapsulating packet.
578                 It may also be the word <code>inherit</code>, in which case the
579                 TTL will be copied from the inner packet if it is IPv4 or IPv6
580                 (otherwise it will be the system default, typically 64).
581                 Default is the system default TTL.</dd>
582             </dl>
583             <dl>
584               <dt><code>pmtud</code></dt>
585               <dd>Optional.  Enable tunnel path MTU discovery.  If enabled
586                 ``ICMP destination unreachable - fragmentation'' needed
587                 messages will be generated for IPv4 packets with the DF bit set
588                 and IPv6 packets above the minimum MTU if the packet size
589                 exceeds the path MTU minus the size of the tunnel headers.  It
590                 also forces the encapsulating packet DF bit to be set (it is
591                 always set if the inner packet implies path MTU discovery).
592                 Note that this option causes behavior that is typically
593                 reserved for routers and therefore is not entirely in
594                 compliance with the IEEE 802.1D specification for bridges.
595                 Default is enabled, set to <code>false</code> to disable.</dd>
596             </dl>
597           </dd>
598           <dt><code>patch</code></dt>
599           <dd>
600             <p>
601               A pair of virtual devices that act as a patch cable.  The <ref
602               column="options"/> column must have the following key-value pair:
603             </p>
604             <dl>
605               <dt><code>peer</code></dt>
606               <dd>
607                 The <ref column="name"/> of the <ref table="Interface"/> for
608                 the other side of the patch.  The named <ref
609                 table="Interface"/>'s own <code>peer</code> option must specify
610                 this <ref table="Interface"/>'s name.  That is, the two patch
611                 interfaces must have reversed <ref column="name"/> and
612                 <code>peer</code> values.
613               </dd>
614             </dl>
615           </dd>
616         </dl>
617       </column>
618
619       <column name="options">
620         Configuration options whose interpretation varies based on
621         <ref column="type"/>.
622       </column>
623
624       <column name="status">
625         <p>
626           Key-value pairs that report port status.  Supported status
627           values are <code>type</code>-dependent.
628         </p>
629         <p>The only currently defined key-value pair is:</p>
630         <dl>
631           <dt><code>source_ip</code></dt>
632           <dd>The source IP address used for an IPv4 tunnel end-point,
633             such as <code>gre</code> or <code>capwap</code>.  Not
634             supported by all implementations.</dd>
635         </dl>
636       </column>
637     </group>
638
639     <group title="Ingress Policing">
640       <column name="ingress_policing_burst">
641         <p>Maximum burst size for data received on this interface, in kb.  The
642           default burst size if set to <code>0</code> is 1000 kb.  This value
643           has no effect if <ref column="ingress_policing_rate"/>
644           is <code>0</code>.</p>
645         <p>The burst size should be at least the size of the interface's
646           MTU.</p>
647       </column>
648
649       <column name="ingress_policing_rate">
650         <p>Maximum rate for data received on this interface, in kbps.  Data
651           received faster than this rate is dropped.  Set to <code>0</code> to
652           disable policing.</p>
653         <p>The meaning of ``ingress'' is from Open vSwitch's perspective.  If
654           configured on a physical interface, then it limits the rate at which
655           traffic is allowed into the system from the outside.  If configured
656           on a virtual interface that is connected to a virtual machine, then
657           it limits the rate at which the guest is able to transmit.</p>
658       </column>
659     </group>
660
661     <group title="Other Features">
662       <column name="external_ids">
663         Key-value pairs for use by external frameworks that integrate
664         with Open vSwitch, rather than by Open vSwitch itself.  System
665         integrators should either use the Open vSwitch development
666         mailing list to coordinate on common key-value definitions, or
667         choose key names that are likely to be unique.  The currently
668         defined common key-value pair is:
669         <dl>
670           <dt><code>iface-id</code></dt>
671           <dd>A system-unique identifier for the interface.  On XenServer, 
672             this will commonly be the same as <code>xs-vif-uuid</code>.</dd>
673         </dl>
674         <p>
675           Additionally the following key-value pairs specifically
676           apply to an interface that represents a virtual Ethernet interface
677           connected to a virtual machine.  These key-value pairs should not be
678           present for other types of interfaces.  Keys whose names end
679           in <code>-uuid</code> have values that uniquely identify the entity
680           in question.  For a Citrix XenServer hypervisor, these values are
681           UUIDs in RFC 4122 format.  Other hypervisors may use other
682           formats.
683         </p>
684         <p>The currently defined key-value pairs for XenServer are:</p>
685         <dl>
686           <dt><code>xs-vif-uuid</code></dt>
687           <dd>The virtual interface associated with this interface.</dd>
688           <dt><code>xs-network-uuid</code></dt>
689           <dd>The virtual network to which this interface is attached.</dd>
690           <dt><code>xs-vm-uuid</code></dt>
691           <dd>The VM to which this interface belongs.</dd>
692           <dt><code>xs-vif-mac</code></dt>
693           <dd>The MAC address programmed into the "virtual hardware" for this
694               interface, in the
695               form <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
696               For Citrix XenServer, this is the value of the <code>MAC</code>
697               field in the VIF record for this interface.</dd>
698         </dl>
699       </column>
700
701       <column name="statistics">
702         <p>
703           Key-value pairs that report interface statistics.  The current
704           implementation updates these counters periodically.  In the future,
705           we plan to, instead, update them when an interface is created, when
706           they are queried (e.g. using an OVSDB <code>select</code> operation),
707           and just before an interface is deleted due to virtual interface
708           hot-unplug or VM shutdown, and perhaps at other times, but not on any
709           regular periodic basis.</p>
710         <p>
711           The currently defined key-value pairs are listed below.  These are
712           the same statistics reported by OpenFlow in its <code>struct
713           ofp_port_stats</code> structure.  If an interface does not support a
714           given statistic, then that pair is omitted.</p>
715         <ul>
716           <li>
717             Successful transmit and receive counters:
718             <dl>
719               <dt><code>rx_packets</code></dt>
720               <dd>Number of received packets.</dd>
721               <dt><code>rx_bytes</code></dt>
722               <dd>Number of received bytes.</dd>
723               <dt><code>tx_packets</code></dt>
724               <dd>Number of transmitted packets.</dd>
725               <dt><code>tx_bytes</code></dt>
726               <dd>Number of transmitted bytes.</dd>
727             </dl>
728           </li>
729           <li>
730             Receive errors:
731             <dl>
732               <dt><code>rx_dropped</code></dt>
733               <dd>Number of packets dropped by RX.</dd>
734               <dt><code>rx_frame_err</code></dt>
735               <dd>Number of frame alignment errors.</dd>
736               <dt><code>rx_over_err</code></dt>
737               <dd>Number of packets with RX overrun.</dd>
738               <dt><code>rx_crc_err</code></dt>
739               <dd>Number of CRC errors.</dd>
740               <dt><code>rx_errors</code></dt>
741               <dd>
742                 Total number of receive errors, greater than or equal
743                 to the sum of the above.
744               </dd>
745             </dl>
746           </li>
747           <li>
748             Transmit errors:
749             <dl>
750               <dt><code>tx_dropped</code></dt>
751               <dd>Number of packets dropped by TX.</dd>
752               <dt><code>collisions</code></dt>
753               <dd>Number of collisions.</dd>
754               <dt><code>tx_errors</code></dt>
755               <dd>
756                 Total number of transmit errors, greater
757                 than or equal to the sum of the above.
758               </dd>
759             </dl>
760           </li>
761         </ul>
762       </column>
763     </group>
764   </table>
765
766   <table name="QoS" title="Quality of Service configuration">
767     <p>Quality of Service (QoS) configuration for each Port that
768       references it.</p>
769
770     <column name="type">
771       <p>The type of QoS to implement.  The <ref table="Open_vSwitch"
772         column="capabilities"/> column in the <ref table="Open_vSwitch"/> table
773         identifies the types that a switch actually supports.  The currently
774         defined types are listed below:</p>
775       <dl>
776         <dt><code>linux-htb</code></dt>
777         <dd>Linux ``hierarchy token bucket'' classifier.</dd>
778       </dl>
779     </column>
780
781     <column name="queues">
782       <p>A map from queue numbers to <ref table="Queue"/> records.  The
783         supported range of queue numbers depend on <ref column="type"/>.  The
784         queue numbers are the same as the <code>queue_id</code> used in
785         OpenFlow in <code>struct ofp_action_enqueue</code> and other
786         structures.  Queue 0 is used by OpenFlow output actions that do not
787         specify a specific queue.</p>
788     </column>
789
790     <column name="other_config">
791       <p>Key-value pairs for configuring QoS features that depend on
792         <ref column="type"/>.</p>
793       <p>The <code>linux-htb</code> class supports the following key-value
794         pairs:</p>
795       <dl>
796         <dt><code>max-rate</code></dt>
797         <dd>Maximum rate shared by all queued traffic, in bit/s.
798           Optional.  If not specified, for physical interfaces, the
799           default is the link rate.  For other interfaces or if the
800           link rate cannot be determined, the default is currently 100
801           Mbps.</dd>
802       </dl>
803     </column>
804
805     <column name="external_ids">
806       Key-value pairs for use by external frameworks that integrate with Open
807       vSwitch, rather than by Open vSwitch itself.  System integrators should
808       either use the Open vSwitch development mailing list to coordinate on
809       common key-value definitions, or choose key names that are likely to be
810       unique.  No common key-value pairs are currently defined.
811     </column>
812   </table>
813
814   <table name="Queue" title="QoS output queue.">
815     <p>A configuration for a port output queue, used in configuring Quality of
816       Service (QoS) features.  May be referenced by <ref column="queues"
817       table="QoS"/> column in <ref table="QoS"/> table.</p>
818
819     <column name="other_config">
820       <p>Key-value pairs for configuring the output queue.  The supported
821         key-value pairs and their meanings depend on the <ref column="type"/>
822         of the <ref column="QoS"/> records that reference this row.</p>
823       <p>The key-value pairs defined for <ref table="QoS"/> <ref table="QoS"
824         column="type"/> of <code>min-rate</code> are:</p>
825       <dl>
826         <dt><code>min-rate</code></dt>
827         <dd>Minimum guaranteed bandwidth, in bit/s.  Required.</dd>
828       </dl>
829       <p>The key-value pairs defined for <ref table="QoS"/> <ref table="QoS"
830         column="type"/> of <code>linux-htb</code> are:</p>
831       <dl>
832         <dt><code>min-rate</code></dt>
833         <dd>Minimum guaranteed bandwidth, in bit/s.  Required.</dd>
834         <dt><code>max-rate</code></dt>
835         <dd>Maximum allowed bandwidth, in bit/s.  Optional.  If specified, the
836           queue's rate will not be allowed to exceed the specified value, even
837           if excess bandwidth is available.  If unspecified, defaults to no
838           limit.</dd>
839         <dt><code>burst</code></dt>
840         <dd>Burst size, in bits.  This is the maximum amount of ``credits''
841           that a queue can accumulate while it is idle.  Optional.  Details of
842           the <code>linux-htb</code> implementation require a minimum burst
843           size, so a too-small <code>burst</code> will be silently
844           ignored.</dd>
845         <dt><code>priority</code></dt>
846         <dd>A nonnegative 32-bit integer.  Defaults to 0 if
847           unspecified.  A queue with a smaller <code>priority</code>
848           will receive all the excess bandwidth that it can use before
849           a queue with a larger value receives any.  Specific priority
850           values are unimportant; only relative ordering matters.</dd>
851       </dl>
852     </column>
853
854     <column name="external_ids">
855       Key-value pairs for use by external frameworks that integrate with Open
856       vSwitch, rather than by Open vSwitch itself.  System integrators should
857       either use the Open vSwitch development mailing list to coordinate on
858       common key-value definitions, or choose key names that are likely to be
859       unique.  No common key-value pairs are currently defined.
860     </column>
861   </table>
862
863   <table name="Mirror" title="Port mirroring (SPAN/RSPAN).">
864     <p>A port mirror within a <ref table="Bridge"/>.</p>
865     <p>A port mirror configures a bridge to send selected frames to special
866       ``mirrored'' ports, in addition to their normal destinations.  Mirroring
867       traffic may also be referred to as SPAN or RSPAN, depending on the
868       mechanism used for delivery.</p>
869
870     <column name="name">
871       Arbitrary identifier for the <ref table="Mirror"/>.
872     </column>
873
874     <group title="Selecting Packets for Mirroring">
875       <column name="select_all">
876         If true, every packet arriving or departing on any port is
877         selected for mirroring.
878       </column>
879
880       <column name="select_dst_port">
881         Ports on which departing packets are selected for mirroring.
882       </column>
883
884       <column name="select_src_port">
885         Ports on which arriving packets are selected for mirroring.
886       </column>
887
888       <column name="select_vlan">
889         VLANs on which packets are selected for mirroring.  An empty set
890         selects packets on all VLANs.
891       </column>
892     </group>
893
894     <group title="Mirroring Destination Configuration">
895       <column name="output_port">
896         <p>Output port for selected packets, if nonempty.  Mutually exclusive
897           with <ref column="output_vlan"/>.</p>
898         <p>Specifying a port for mirror output reserves that port exclusively
899           for mirroring.  No frames other than those selected for mirroring
900           will be forwarded to the port, and any frames received on the port
901           will be discarded.</p>
902         <p>This type of mirroring is sometimes called SPAN.</p>
903       </column>
904
905       <column name="output_vlan">
906         <p>Output VLAN for selected packets, if nonempty.  Mutually exclusive
907           with <ref column="output_port"/>.</p>
908         <p>The frames will be sent out all ports that trunk
909           <ref column="output_vlan"/>, as well as any ports with implicit VLAN
910           <ref column="output_vlan"/>.  When a mirrored frame is sent out a
911           trunk port, the frame's VLAN tag will be set to
912           <ref column="output_vlan"/>, replacing any existing tag; when it is
913           sent out an implicit VLAN port, the frame will not be tagged.  This
914           type of mirroring is sometimes called RSPAN.</p>
915         <p><em>Please note:</em> Mirroring to a VLAN can disrupt a network that
916           contains unmanaged switches.  Consider an unmanaged physical switch
917           with two ports: port 1, connected to an end host, and port 2,
918           connected to an Open vSwitch configured to mirror received packets
919           into VLAN 123 on port 2.  Suppose that the end host sends a packet on
920           port 1 that the physical switch forwards to port 2.  The Open vSwitch
921           forwards this packet to its destination and then reflects it back on
922           port 2 in VLAN 123.  This reflected packet causes the unmanaged
923           physical switch to replace the MAC learning table entry, which
924           correctly pointed to port 1, with one that incorrectly points to port
925           2.  Afterward, the physical switch will direct packets destined for
926           the end host to the Open vSwitch on port 2, instead of to the end
927           host on port 1, disrupting connectivity.  If mirroring to a VLAN is
928           desired in this scenario, then the physical switch must be replaced
929           by one that learns Ethernet addresses on a per-VLAN basis.  In
930           addition, learning should be disabled on the VLAN containing mirrored
931           traffic. If this is not done then intermediate switches will learn
932           the MAC address of each end host from the mirrored traffic.  If
933           packets being sent to that end host are also mirrored, then they will
934           be dropped since the switch will attempt to send them out the input
935           port. Disabling learning for the VLAN will cause the switch to
936           correctly send the packet out all ports configured for that VLAN.  If
937           Open vSwitch is being used as an intermediate switch, learning can be
938           disabled by adding the mirrored VLAN to <ref column="flood_vlans"/>
939           in the appropriate <ref table="Bridge"/> table or tables.</p>
940       </column>
941     </group>
942
943     <group title="Other Features">
944       <column name="external_ids">
945         Key-value pairs for use by external frameworks that integrate with Open
946         vSwitch, rather than by Open vSwitch itself.  System integrators should
947         either use the Open vSwitch development mailing list to coordinate on
948         common key-value definitions, or choose key names that are likely to be
949         unique.  No common key-value pairs are currently defined.
950       </column>
951     </group>
952   </table>
953
954   <table name="Controller" title="OpenFlow controller configuration.">
955     <p>An OpenFlow controller.</p>
956
957     <p>
958       Open vSwitch supports two kinds of OpenFlow controllers:
959     </p>
960     
961     <dl>
962       <dt>Primary controllers</dt>
963       <dd>
964         <p>
965           This is the kind of controller envisioned by the OpenFlow 1.0
966           specification.  Usually, a primary controller implements a network
967           policy by taking charge of the switch's flow table.
968         </p>
969
970         <p>
971           Open vSwitch initiates and maintains persistent connections to
972           primary controllers, retrying the connection each time it fails or
973           drops.  The <ref table="Bridge" column="fail_mode"/> column in the
974           <ref table="Bridge"/> table applies to primary controllers.
975         </p>
976
977         <p>
978           Open vSwitch permits a bridge to have any number of primary
979           controllers.  When multiple controllers are configured, Open
980           vSwitch connects to all of them simultaneously.  Because
981           OpenFlow 1.0 does not specify how multiple controllers
982           coordinate in interacting with a single switch, more than
983           one primary controller should be specified only if the
984           controllers are themselves designed to coordinate with each
985           other.  (The Nicira-defined <code>NXT_ROLE</code> OpenFlow
986           vendor extension may be useful for this.)
987         </p>
988       </dd>
989       <dt>Service controllers</dt>
990       <dd>
991         <p>
992           These kinds of OpenFlow controller connections are intended for
993           occasional support and maintenance use, e.g. with
994           <code>ovs-ofctl</code>.  Usually a service controller connects only
995           briefly to inspect or modify some of a switch's state.
996         </p>
997
998         <p>
999           Open vSwitch listens for incoming connections from service
1000           controllers.  The service controllers initiate and, if necessary,
1001           maintain the connections from their end.  The <ref table="Bridge"
1002           column="fail_mode"/> column in the <ref table="Bridge"/> table does
1003           not apply to service controllers.
1004         </p>
1005
1006         <p>
1007           Open vSwitch supports configuring any number of service controllers.
1008         </p>
1009       </dd>
1010     </dl>
1011
1012     <p>
1013       The <ref column="target"/> determines the type of controller.
1014     </p>
1015
1016     <group title="Core Features">
1017       <column name="target">
1018         <p>Connection method for controller.</p>
1019         <p>
1020           The following connection methods are currently supported for primary
1021           controllers:
1022         </p>
1023         <dl>
1024           <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
1025           <dd>
1026             <p>The specified SSL <var>port</var> (default: 6633) on the host at
1027             the given <var>ip</var>, which must be expressed as an IP address
1028             (not a DNS name).  The <ref table="Open_vSwitch" column="ssl"/>
1029             column in the <ref table="Open_vSwitch"/> table must point to a
1030             valid SSL configuration when this form is used.</p>
1031             <p>SSL support is an optional feature that is not always built as
1032               part of Open vSwitch.</p>
1033           </dd>
1034           <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
1035           <dd>The specified TCP <var>port</var> (default: 6633) on the host at
1036             the given <var>ip</var>, which must be expressed as an IP address
1037             (not a DNS name).</dd>
1038           <dt><code>discover</code></dt>
1039           <dd>
1040             <p>Enables controller discovery.</p>
1041             <p>In controller discovery mode, Open vSwitch broadcasts a DHCP
1042               request with vendor class identifier <code>OpenFlow</code> across
1043               all of the bridge's network devices.  It will accept any valid
1044               DHCP reply that has the same vendor class identifier and includes
1045               a vendor-specific option with code 1 whose contents are a string
1046               specifying the location of the controller in the same format as
1047               <ref column="target"/>.</p>
1048             <p>The DHCP reply may also, optionally, include a vendor-specific
1049               option with code 2 whose contents are a string specifying the URI
1050               to the base of the OpenFlow PKI
1051               (e.g. <code>http://192.168.0.1/openflow/pki</code>).  This URI is
1052               used only for bootstrapping the OpenFlow PKI at initial switch
1053               setup; <code>ovs-vswitchd</code> does not use it at all.</p>
1054           </dd>
1055         </dl>
1056         <p>
1057           The following connection methods are currently supported for service
1058           controllers:
1059         </p>
1060         <dl>
1061           <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
1062           <dd>
1063             <p>
1064               Listens for SSL connections on the specified TCP <var>port</var>
1065               (default: 6633).  If <var>ip</var>, which must be expressed as an
1066               IP address (not a DNS name), is specified, then connections are
1067               restricted to the specified local IP address.
1068             </p>
1069             <p>
1070               The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
1071               table="Open_vSwitch"/> table must point to a valid SSL
1072               configuration when this form is used.
1073             </p>
1074             <p>SSL support is an optional feature that is not always built as
1075               part of Open vSwitch.</p>
1076           </dd>
1077           <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
1078           <dd>
1079             Listens for connections on the specified TCP <var>port</var>
1080             (default: 6633).  If <var>ip</var>, which must be expressed as an
1081             IP address (not a DNS name), is specified, then connections are
1082             restricted to the specified local IP address.
1083           </dd>
1084         </dl>
1085         <p>When multiple controllers are configured for a single bridge, the
1086           <ref column="target"/> values must be unique.  Duplicate
1087           <ref column="target"/> values yield unspecified results.</p>
1088       </column>
1089
1090       <column name="connection_mode">
1091         <p>If it is specified, this setting must be one of the following
1092         strings that describes how Open vSwitch contacts this OpenFlow
1093         controller over the network:</p>
1094
1095         <dl>
1096           <dt><code>in-band</code></dt>
1097           <dd>In this mode, this controller's OpenFlow traffic travels over the
1098             bridge associated with the controller.  With this setting, Open
1099             vSwitch allows traffic to and from the controller regardless of the
1100             contents of the OpenFlow flow table.  (Otherwise, Open vSwitch
1101             would never be able to connect to the controller, because it did
1102             not have a flow to enable it.)  This is the most common connection
1103             mode because it is not necessary to maintain two independent
1104             networks.</dd>
1105           <dt><code>out-of-band</code></dt>
1106           <dd>In this mode, OpenFlow traffic uses a control network separate
1107             from the bridge associated with this controller, that is, the
1108             bridge does not use any of its own network devices to communicate
1109             with the controller.  The control network must be configured
1110             separately, before or after <code>ovs-vswitchd</code> is started.
1111           </dd>
1112         </dl>
1113
1114         <p>If not specified, the default is implementation-specific.  If
1115           <ref column="target"/> is <code>discover</code>, the connection mode
1116           is always treated as <code>in-band</code> regardless of the actual
1117           setting.</p>
1118       </column>
1119     </group>
1120
1121     <group title="Controller Failure Detection and Handling">
1122       <column name="max_backoff">
1123         Maximum number of milliseconds to wait between connection attempts.
1124         Default is implementation-specific.
1125       </column>
1126
1127       <column name="inactivity_probe">
1128         Maximum number of milliseconds of idle time on connection to
1129         controller before sending an inactivity probe message.  If Open
1130         vSwitch does not communicate with the controller for the specified
1131         number of seconds, it will send a probe.  If a response is not
1132         received for the same additional amount of time, Open vSwitch
1133         assumes the connection has been broken and attempts to reconnect.
1134         Default is implementation-specific.
1135       </column>
1136     </group>
1137
1138     <group title="OpenFlow Rate Limiting">
1139         <column name="controller_rate_limit">
1140           <p>The maximum rate at which packets in unknown flows will be
1141             forwarded to the OpenFlow controller, in packets per second.  This
1142             feature prevents a single bridge from overwhelming the controller.
1143             If not specified, the default is implementation-specific.</p>
1144           <p>In addition, when a high rate triggers rate-limiting, Open
1145             vSwitch queues controller packets for each port and transmits
1146             them to the controller at the configured rate.  The number of
1147             queued packets is limited by
1148             the <ref column="controller_burst_limit"/> value.  The packet
1149             queue is shared fairly among the ports on a bridge.</p><p>Open
1150             vSwitch maintains two such packet rate-limiters per bridge.
1151             One of these applies to packets sent up to the controller
1152             because they do not correspond to any flow.  The other applies
1153             to packets sent up to the controller by request through flow
1154             actions. When both rate-limiters are filled with packets, the
1155             actual rate that packets are sent to the controller is up to
1156             twice the specified rate.</p>
1157         </column>
1158
1159         <column name="controller_burst_limit">
1160           In conjunction with <ref column="controller_rate_limit"/>,
1161           the maximum number of unused packet credits that the bridge will
1162           allow to accumulate, in packets.  If not specified, the default
1163           is implementation-specific.
1164         </column>
1165     </group>
1166
1167     <group title="Additional Discovery Configuration">
1168       <p>These values are considered only when <ref column="target"/>
1169         is <code>discover</code>.</p>
1170
1171       <column name="discover_accept_regex">
1172         A POSIX
1173         extended regular expression against which the discovered controller
1174         location is validated.  The regular expression is implicitly
1175         anchored at the beginning of the controller location string, as
1176         if it begins with <code>^</code>.  If not specified, the default
1177         is implementation-specific.
1178       </column>
1179
1180       <column name="discover_update_resolv_conf">
1181         Whether to update <code>/etc/resolv.conf</code> when the
1182         controller is discovered.  If not specified, the default
1183         is implementation-specific.  Open vSwitch will only modify
1184         <code>/etc/resolv.conf</code> if the DHCP response that it receives
1185         specifies one or more DNS servers.
1186       </column>
1187     </group>
1188
1189     <group title="Additional In-Band Configuration">
1190       <p>These values are considered only in in-band control mode (see
1191         <ref column="connection_mode"/>) and only when <ref column="target"/>
1192         is not <code>discover</code>.  (For controller discovery, the network
1193         configuration obtained via DHCP is used instead.)</p>
1194
1195       <p>When multiple controllers are configured on a single bridge, there
1196         should be only one set of unique values in these columns.  If different
1197         values are set for these columns in different controllers, the effect
1198         is unspecified.</p>
1199
1200       <column name="local_ip">
1201         The IP address to configure on the local port,
1202         e.g. <code>192.168.0.123</code>.  If this value is unset, then
1203         <ref column="local_netmask"/> and <ref column="local_gateway"/> are
1204         ignored.
1205       </column>
1206
1207       <column name="local_netmask">
1208         The IP netmask to configure on the local port,
1209         e.g. <code>255.255.255.0</code>.  If <ref column="local_ip"/> is set
1210         but this value is unset, then the default is chosen based on whether
1211         the IP address is class A, B, or C.
1212       </column>
1213
1214       <column name="local_gateway">
1215         The IP address of the gateway to configure on the local port, as a
1216         string, e.g. <code>192.168.0.1</code>.  Leave this column unset if
1217         this network has no gateway.
1218       </column>
1219     </group>
1220
1221     <group title="Other Features">
1222       <column name="external_ids">
1223         Key-value pairs for use by external frameworks that integrate with Open
1224         vSwitch, rather than by Open vSwitch itself.  System integrators should
1225         either use the Open vSwitch development mailing list to coordinate on
1226         common key-value definitions, or choose key names that are likely to be
1227         unique.  No common key-value pairs are currently defined.
1228       </column>
1229     </group>
1230   </table>
1231
1232   <table name="NetFlow">
1233     A NetFlow target.  NetFlow is a protocol that exports a number of
1234     details about terminating IP flows, such as the principals involved
1235     and duration.
1236
1237     <column name="targets">
1238       NetFlow targets in the form
1239       <code><var>ip</var>:<var>port</var></code>.  The <var>ip</var>
1240       must be specified numerically, not as a DNS name.
1241     </column>
1242
1243     <column name="engine_id">
1244       Engine ID to use in NetFlow messages.  Defaults to datapath index
1245       if not specified.
1246     </column>
1247
1248     <column name="engine_type">
1249       Engine type to use in NetFlow messages.  Defaults to datapath
1250       index if not specified.
1251     </column>
1252
1253     <column name="active_timeout">
1254       The interval at which NetFlow records are sent for flows that are
1255       still active, in seconds.  A value of <code>0</code> requests the
1256       default timeout (currently 600 seconds); a value of <code>-1</code>
1257       disables active timeouts.
1258     </column>
1259
1260     <column name="add_id_to_interface">
1261       <p>If this column's value is <code>false</code>, the ingress and egress
1262         interface fields of NetFlow flow records are derived from OpenFlow port
1263         numbers.  When it is <code>true</code>, the 7 most significant bits of
1264         these fields will be replaced by the least significant 7 bits of the
1265         engine id.  This is useful because many NetFlow collectors do not
1266         expect multiple switches to be sending messages from the same host, so
1267         they do not store the engine information which could be used to
1268         disambiguate the traffic.</p>
1269       <p>When this option is enabled, a maximum of 508 ports are supported.</p>
1270     </column>
1271
1272     <column name="external_ids">
1273       Key-value pairs for use by external frameworks that integrate with Open
1274       vSwitch, rather than by Open vSwitch itself.  System integrators should
1275       either use the Open vSwitch development mailing list to coordinate on
1276       common key-value definitions, or choose key names that are likely to be
1277       unique.  No common key-value pairs are currently defined.
1278     </column>
1279   </table>
1280
1281   <table name="SSL">
1282     SSL configuration for an Open_vSwitch.
1283
1284     <column name="private_key">
1285       Name of a PEM file containing the private key used as the switch's
1286       identity for SSL connections to the controller.
1287     </column>
1288
1289     <column name="certificate">
1290       Name of a PEM file containing a certificate, signed by the
1291       certificate authority (CA) used by the controller and manager,
1292       that certifies the switch's private key, identifying a trustworthy
1293       switch.
1294     </column>
1295
1296     <column name="ca_cert">
1297       Name of a PEM file containing the CA certificate used to verify
1298       that the switch is connected to a trustworthy controller.
1299     </column>
1300
1301     <column name="bootstrap_ca_cert">
1302       If set to <code>true</code>, then Open vSwitch will attempt to
1303       obtain the CA certificate from the controller on its first SSL
1304       connection and save it to the named PEM file. If it is successful,
1305       it will immediately drop the connection and reconnect, and from then
1306       on all SSL connections must be authenticated by a certificate signed
1307       by the CA certificate thus obtained.  <em>This option exposes the
1308         SSL connection to a man-in-the-middle attack obtaining the initial
1309         CA certificate.</em>  It may still be useful for bootstrapping.
1310     </column>
1311
1312     <column name="external_ids">
1313       Key-value pairs for use by external frameworks that integrate with Open
1314       vSwitch, rather than by Open vSwitch itself.  System integrators should
1315       either use the Open vSwitch development mailing list to coordinate on
1316       common key-value definitions, or choose key names that are likely to be
1317       unique.  No common key-value pairs are currently defined.
1318     </column>
1319   </table>
1320
1321   <table name="sFlow">
1322     <p>An sFlow(R) target.  sFlow is a protocol for remote monitoring
1323       of switches.</p>
1324
1325     <column name="agent">
1326       Name of the network device whose IP address should be reported as the
1327       ``agent address'' to collectors.  If not specified, the IP address
1328       defaults to the <ref table="Controller" column="local_ip"/> in the
1329       collector's <ref table="Controller"/>.  If an agent IP address cannot be
1330       determined either way, sFlow is disabled.
1331     </column>
1332
1333     <column name="header">
1334       Number of bytes of a sampled packet to send to the collector.
1335       If not specified, the default is 128 bytes.
1336     </column>
1337
1338     <column name="polling">
1339       Polling rate in seconds to send port statistics to the collector.
1340       If not specified, defaults to 30 seconds.
1341     </column>
1342
1343     <column name="sampling">
1344       Rate at which packets should be sampled and sent to the collector.
1345       If not specified, defaults to 400, which means one out of 400
1346       packets, on average, will be sent to the collector.
1347     </column>
1348
1349     <column name="targets">
1350       sFlow targets in the form
1351       <code><var>ip</var>:<var>port</var></code>.
1352     </column>
1353
1354     <column name="external_ids">
1355       Key-value pairs for use by external frameworks that integrate with Open
1356       vSwitch, rather than by Open vSwitch itself.  System integrators should
1357       either use the Open vSwitch development mailing list to coordinate on
1358       common key-value definitions, or choose key names that are likely to be
1359       unique.  No common key-value pairs are currently defined.
1360     </column>
1361   </table>
1362
1363   <table name="Capability">
1364     <p>Records in this table describe functionality supported by the hardware
1365       and software platform on which this Open vSwitch is based.  Clients
1366       should not modify this table.</p>
1367
1368     <p>A record in this table is meaningful only if it is referenced by the
1369       <ref table="Open_vSwitch" column="capabilities"/> column in the
1370       <ref table="Open_vSwitch"/> table.  The key used to reference it, called
1371       the record's ``category,'' determines the meanings of the
1372       <ref column="details"/> column.  The following general forms of
1373       categories are currently defined:</p>
1374
1375     <dl>
1376       <dt><code>qos-<var>type</var></code></dt>
1377       <dd><var>type</var> is supported as the value for
1378         <ref column="type" table="QoS"/> in the <ref table="QoS"/> table.
1379       </dd>
1380     </dl>
1381
1382     <column name="details">
1383       <p>Key-value pairs that describe capabilities.  The meaning of the pairs
1384       depends on the category key that the <ref table="Open_vSwitch"
1385       column="capabilities"/> column in the <ref table="Open_vSwitch"/> table
1386       uses to reference this record, as described above.</p>
1387
1388       <p>The presence of a record for category <code>qos-<var>type</var></code>
1389           indicates that the switch supports <var>type</var> as the value of
1390           the <ref table="QoS" column="type"/> column in the <ref table="QoS"/>
1391           table.  The following key-value pairs are defined to further describe
1392           QoS capabilities:</p>
1393
1394       <dl>
1395         <dt><code>n-queues</code></dt>
1396         <dd>Number of supported queues, as a positive integer.  Keys in the
1397           <ref table="QoS" column="queues"/> column for <ref table="QoS"/>
1398           records whose <ref table="QoS" column="type"/> value
1399           equals <var>type</var> must range between 0 and this value minus one,
1400           inclusive.</dd>
1401       </dl>
1402     </column>
1403   </table>
1404 </database>