]> git.proxmox.com Git - mirror_ovs.git/blame - vswitchd/vswitch.xml
netdev-dpdk: Remove dpdkvhostcuse ports
[mirror_ovs.git] / vswitchd / vswitch.xml
CommitLineData
ce887677 1<?xml version="1.0" encoding="utf-8"?>
57ba0a77 2<database name="ovs-vswitchd.conf.db" title="Open vSwitch Configuration Database">
c5f341ab
BP
3 <p>
4 A database with this schema holds the configuration for one Open
5 vSwitch daemon. The top-level configuration for the daemon is the
6 <ref table="Open_vSwitch"/> table, which must have exactly one
89365653 7 record. Records in other tables are significant only when they
c5f341ab
BP
8 can be reached directly or indirectly from the <ref
9 table="Open_vSwitch"/> table. Records that are not reachable from
10 the <ref table="Open_vSwitch"/> table are automatically deleted
11 from the database, except for records in a few distinguished
3fd8d445 12 ``root set'' tables.
c5f341ab 13 </p>
89365653 14
3fd8d445
BP
15 <h2>Common Columns</h2>
16
17 <p>
18 Most tables contain two special columns, named <code>other_config</code>
19 and <code>external_ids</code>. These columns have the same form and
20 purpose each place that they appear, so we describe them here to save space
21 later.
22 </p>
23
24 <dl>
25 <dt><code>other_config</code>: map of string-string pairs</dt>
26 <dd>
27 <p>
28 Key-value pairs for configuring rarely used features. Supported keys,
29 along with the forms taken by their values, are documented individually
30 for each table.
31 </p>
32 <p>
33 A few tables do not have <code>other_config</code> columns because no
34 key-value pairs have yet been defined for them.
35 </p>
36 </dd>
37
38 <dt><code>external_ids</code>: map of string-string pairs</dt>
39 <dd>
40 Key-value pairs for use by external frameworks that integrate with Open
41 vSwitch, rather than by Open vSwitch itself. System integrators should
42 either use the Open vSwitch development mailing list to coordinate on
43 common key-value definitions, or choose key names that are likely to be
44 unique. In some cases, where key-value pairs have been defined that are
45 likely to be widely useful, they are documented individually for each
46 table.
47 </dd>
48 </dl>
49
89365653 50 <table name="Open_vSwitch" title="Open vSwitch configuration.">
c5f341ab
BP
51 Configuration for an Open vSwitch daemon. There must be exactly
52 one record in the <ref table="Open_vSwitch"/> table.
89365653
BP
53
54 <group title="Configuration">
55 <column name="bridges">
56 Set of bridges managed by the daemon.
57 </column>
58
89365653
BP
59 <column name="ssl">
60 SSL used globally by the daemon.
61 </column>
f5e7ed5d 62
3fd8d445
BP
63 <column name="external_ids" key="system-id">
64 A unique identifier for the Open vSwitch's physical host.
65 The form of the identifier depends on the type of the host.
66 On a Citrix XenServer, this will likely be the same as
67 <ref column="external_ids" key="xs-system-uuid"/>.
3fe80505
BP
68 </column>
69
3fd8d445
BP
70 <column name="external_ids" key="xs-system-uuid">
71 The Citrix XenServer universally unique identifier for the physical
72 host as displayed by <code>xe host-list</code>.
f5e7ed5d 73 </column>
40358701 74
9e6ec60a
RB
75 <column name="external_ids" key="hostname">
76 The hostname for the host running Open vSwitch.
77 </column>
78
12eb035b
AW
79 <column name="other_config" key="stats-update-interval"
80 type='{"type": "integer", "minInteger": 5000}'>
81 <p>
82 Interval for updating statistics to the database, in milliseconds.
83 This option will affect the update of the <code>statistics</code>
84 column in the following tables: <code>Port</code>, <code>Interface
85 </code>, <code>Mirror</code>.
86 </p>
87 <p>
88 Default value is 5000 ms.
89 </p>
90 <p>
91 Getting statistics more frequently can be achieved via OpenFlow.
92 </p>
93 </column>
94
40358701
GS
95 <column name="other_config" key="flow-restore-wait"
96 type='{"type": "boolean"}'>
97 <p>
98 When <code>ovs-vswitchd</code> starts up, it has an empty flow table
99 and therefore it handles all arriving packets in its default fashion
100 according to its configuration, by dropping them or sending them to
101 an OpenFlow controller or switching them as a standalone switch.
102 This behavior is ordinarily desirable. However, if
103 <code>ovs-vswitchd</code> is restarting as part of a ``hot-upgrade,''
104 then this leads to a relatively long period during which packets are
105 mishandled.
106 </p>
107 <p>
108 This option allows for improvement. When <code>ovs-vswitchd</code>
109 starts with this value set as <code>true</code>, it will neither
110 flush or expire previously set datapath flows nor will it send and
111 receive any packets to or from the datapath. When this value is
112 later set to <code>false</code>, <code>ovs-vswitchd</code> will
113 start receiving packets from the datapath and re-setup the flows.
114 </p>
115 <p>
116 Thus, with this option, the procedure for a hot-upgrade of
117 <code>ovs-vswitchd</code> becomes roughly the following:
118 </p>
119 <ol>
120 <li>
121 Stop <code>ovs-vswitchd</code>.
122 </li>
123 <li>
124 Set <ref column="other_config" key="flow-restore-wait"/>
125 to <code>true</code>.
126 </li>
127 <li>
128 Start <code>ovs-vswitchd</code>.
129 </li>
130 <li>
131 Use <code>ovs-ofctl</code> (or some other program, such as an
132 OpenFlow controller) to restore the OpenFlow flow table
133 to the desired state.
134 </li>
135 <li>
136 Set <ref column="other_config" key="flow-restore-wait"/>
137 to <code>false</code> (or remove it entirely from the database).
138 </li>
139 </ol>
407b1473
GS
140 <p>
141 The <code>ovs-ctl</code>'s ``restart'' and ``force-reload-kmod''
142 functions use the above config option during hot upgrades.
143 </p>
40358701 144 </column>
380f49c4 145
e79a6c83 146 <column name="other_config" key="flow-limit"
380f49c4
EJ
147 type='{"type": "integer", "minInteger": 0}'>
148 <p>
e79a6c83
EJ
149 The maximum
150 number of flows allowed in the datapath flow table. Internally OVS
151 will choose a flow limit which will likely be lower than this number,
38b366b1
JS
152 based on real time network conditions. Tweaking this value is
153 discouraged unless you know exactly what you're doing.
380f49c4
EJ
154 </p>
155 <p>
e79a6c83 156 The default is 200000.
380f49c4
EJ
157 </p>
158 </column>
7155fa52 159
06745dc3
JS
160 <column name="other_config" key="max-idle"
161 type='{"type": "integer", "minInteger": 500}'>
162 <p>
163 The maximum time (in ms) that idle flows will remain cached in the
164 datapath. Internally OVS will check the validity and activity for
165 datapath flows regularly and may expire flows quicker than this
166 number, based on real time network conditions. Tweaking this
167 value is discouraged unless you know exactly what you're doing.
168 </p>
169 <p>
170 The default is 10000.
171 </p>
172 </column>
173
bab69409
AC
174 <column name="other_config" key="dpdk-init"
175 type='{"type": "boolean"}'>
176 <p>
177 Set this value to <code>true</code> to enable runtime support for
178 DPDK ports. The vswitch must have compile-time support for DPDK as
179 well.
180 </p>
181 <p>
182 The default value is <code>false</code>. Changing this value requires
183 restarting the daemon
184 </p>
185 <p>
186 If this value is <code>false</code> at startup, any dpdk ports which
187 are configured in the bridge will fail due to memory errors.
188 </p>
189 </column>
190
191 <column name="other_config" key="dpdk-lcore-mask"
192 type='{"type": "integer", "minInteger": 1}'>
193 <p>
194 Specifies the CPU cores where dpdk lcore threads should be spawned.
195 The DPDK lcore threads are used for DPDK library tasks, such as
196 library internal message processing, logging, etc. Value should be in
197 the form of a hex string (so '0x123') similar to the 'taskset' mask
198 input.
199 </p>
200 <p>
201 The lowest order bit corresponds to the first CPU core. A set bit
202 means the corresponding core is available and an lcore thread will be
203 created and pinned to it. If the input does not cover all cores,
204 those uncovered cores are considered not set.
205 </p>
206 <p>
207 For performance reasons, it is best to set this to a single core on
208 the system, rather than allow lcore threads to float.
209 </p>
210 <p>
211 If not specified, the value will be determined by choosing the lowest
212 CPU core from initial cpu affinity list. Otherwise, the value will be
213 passed directly to the DPDK library.
214 </p>
215 </column>
216
f2eee189
AW
217 <column name="other_config" key="pmd-cpu-mask">
218 <p>
219 Specifies CPU mask for setting the cpu affinity of PMD (Poll
220 Mode Driver) threads. Value should be in the form of hex string,
221 similar to the dpdk EAL '-c COREMASK' option input or the 'taskset'
222 mask input.
223 </p>
224 <p>
225 The lowest order bit corresponds to the first CPU core. A set bit
ee8627fa
AW
226 means the corresponding core is available and a pmd thread will be
227 created and pinned to it. If the input does not cover all cores,
228 those uncovered cores are considered not set.
f2eee189
AW
229 </p>
230 <p>
231 If not specified, one pmd thread will be created for each numa node
232 and pinned to any available core on the numa node by default.
233 </p>
234 </column>
235
bab69409
AC
236 <column name="other_config" key="dpdk-alloc-mem"
237 type='{"type": "integer", "minInteger": 0}'>
238 <p>
239 Specifies the amount of memory to preallocate from the hugepage pool,
240 regardless of socket. It is recommended that dpdk-socket-mem is used
241 instead.
242 </p>
243 <p>
244 If not specified, the value is 0. Changing this value requires
245 restarting the daemon.
246 </p>
247 </column>
248
249 <column name="other_config" key="dpdk-socket-mem"
250 type='{"type": "string"}'>
251 <p>
252 Specifies the amount of memory to preallocate from the hugepage pool,
253 on a per-socket basis.
254 </p>
255 <p>
256 The specifier is a comma-separated string, in ascending order of CPU
257 socket (ex: 1024,2048,4096,8192 would set socket 0 to preallocate
258 1024MB, socket 1 to preallocate 2048MB, etc.)
259 </p>
260 <p>
261 If not specified, the default value is 1024,0. Changing this value
262 requires restarting the daemon.
263 </p>
264 </column>
265
266 <column name="other_config" key="dpdk-hugepage-dir"
267 type='{"type": "string"}'>
268 <p>
269 Specifies the path to the hugetlbfs mount point.
270 </p>
271 <p>
272 If not specified, this will be guessed by the DPDK library (default
273 is /dev/hugepages). Changing this value requires restarting the
274 daemon.
275 </p>
276 </column>
277
eac84432
AC
278 <column name="other_config" key="dpdk-extra"
279 type='{"type": "string"}'>
280 <p>
281 Specifies additional eal command line arguments for DPDK.
282 </p>
283 <p>
284 The default is empty. Changing this value requires restarting the
285 daemon
286 </p>
287 </column>
288
bab69409
AC
289 <column name="other_config" key="vhost-sock-dir"
290 type='{"type": "string"}'>
291 <p>
d8a8f353
AC
292 Specifies the path to the vhost-user unix domain socket files. This
293 path must exist and be a subdirectory tree of the Open vSwitch
294 run directory.
bab69409
AC
295 </p>
296 <p>
297 Defaults to the working directory of the application. Changing this
298 value requires restarting the daemon.
299 </p>
300 </column>
301
448a4b2f
AW
302 <column name="other_config" key="n-handler-threads"
303 type='{"type": "integer", "minInteger": 1}'>
304 <p>
305 Specifies the number of threads for software datapaths to use for
e79a6c83
EJ
306 handling new flows. The default the number of online CPU cores minus
307 the number of revalidators.
308 </p>
309 <p>
310 This configuration is per datapath. If you have more than one
311 software datapath (e.g. some <code>system</code> bridges and some
312 <code>netdev</code> bridges), then the total number of threads is
313 <code>n-handler-threads</code> times the number of software
314 datapaths.
315 </p>
316 </column>
317
318 <column name="other_config" key="n-revalidator-threads"
319 type='{"type": "integer", "minInteger": 1}'>
320 <p>
321 Specifies the number of threads for software datapaths to use for
322 revalidating flows in the datapath. Typically, there is a direct
323 correlation between the number of revalidator threads, and the number
324 of flows allowed in the datapath. The default is the number of cpu
325 cores divided by four plus one. If <code>n-handler-threads</code> is
326 set, the default changes to the number of cpu cores minus the number
327 of handler threads.
448a4b2f
AW
328 </p>
329 <p>
330 This configuration is per datapath. If you have more than one
331 software datapath (e.g. some <code>system</code> bridges and some
332 <code>netdev</code> bridges), then the total number of threads is
333 <code>n-handler-threads</code> times the number of software
334 datapaths.
335 </p>
336 </column>
89365653
BP
337 </group>
338
339 <group title="Status">
340 <column name="next_cfg">
341 Sequence number for client to increment. When a client modifies
342 any part of the database configuration and wishes to wait for
343 Open vSwitch to finish applying the changes, it may increment
344 this sequence number.
345 </column>
346
347 <column name="cur_cfg">
348 Sequence number that Open vSwitch sets to the current value of
2e57b537 349 <ref column="next_cfg"/> after it finishes applying a set of
89365653
BP
350 configuration changes.
351 </column>
c1c9c9c4 352
3fd8d445 353 <group title="Statistics">
018f1525 354 <p>
3fd8d445
BP
355 The <code>statistics</code> column contains key-value pairs that
356 report statistics about a system running an Open vSwitch. These are
357 updated periodically (currently, every 5 seconds). Key-value pairs
358 that cannot be determined or that do not apply to a platform are
359 omitted.
ce887677
BP
360 </p>
361
f9e5e5b3
BP
362 <column name="other_config" key="enable-statistics"
363 type='{"type": "boolean"}'>
3fd8d445
BP
364 Statistics are disabled by default to avoid overhead in the common
365 case when statistics gathering is not useful. Set this value to
366 <code>true</code> to enable populating the <ref column="statistics"/>
367 column or to <code>false</code> to explicitly disable it.
368 </column>
3fe80505 369
f9e5e5b3
BP
370 <column name="statistics" key="cpu"
371 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
372 <p>
373 Number of CPU processors, threads, or cores currently online and
374 available to the operating system on which Open vSwitch is running,
375 as an integer. This may be less than the number installed, if some
376 are not online or if they are not available to the operating
377 system.
378 </p>
379 <p>
380 Open vSwitch userspace processes are not multithreaded, but the
381 Linux kernel-based datapath is.
382 </p>
383 </column>
ce887677 384
3fd8d445
BP
385 <column name="statistics" key="load_average">
386 A comma-separated list of three floating-point numbers,
387 representing the system load average over the last 1, 5, and 15
388 minutes, respectively.
389 </column>
ce887677 390
3fd8d445
BP
391 <column name="statistics" key="memory">
392 <p>
393 A comma-separated list of integers, each of which represents a
394 quantity of memory in kilobytes that describes the operating
395 system on which Open vSwitch is running. In respective order,
396 these values are:
397 </p>
ce887677 398
3fd8d445
BP
399 <ol>
400 <li>Total amount of RAM allocated to the OS.</li>
401 <li>RAM allocated to the OS that is in use.</li>
402 <li>RAM that can be flushed out to disk or otherwise discarded
403 if that space is needed for another purpose. This number is
404 necessarily less than or equal to the previous value.</li>
405 <li>Total disk space allocated for swap.</li>
406 <li>Swap space currently in use.</li>
407 </ol>
ce887677 408
3fd8d445
BP
409 <p>
410 On Linux, all five values can be determined and are included. On
411 other operating systems, only the first two values can be
412 determined, so the list will only have two values.
413 </p>
414 </column>
ce887677 415
3fd8d445
BP
416 <column name="statistics" key="process_NAME">
417 <p>
418 One such key-value pair, with <code>NAME</code> replaced by
419 a process name, will exist for each running Open vSwitch
420 daemon process, with <var>name</var> replaced by the
421 daemon's name (e.g. <code>process_ovs-vswitchd</code>). The
422 value is a comma-separated list of integers. The integers
423 represent the following, with memory measured in kilobytes
424 and durations in milliseconds:
425 </p>
ce887677 426
3fd8d445
BP
427 <ol>
428 <li>The process's virtual memory size.</li>
429 <li>The process's resident set size.</li>
430 <li>The amount of user and system CPU time consumed by the
431 process.</li>
432 <li>The number of times that the process has crashed and been
433 automatically restarted by the monitor.</li>
434 <li>The duration since the process was started.</li>
435 <li>The duration for which the process has been running.</li>
436 </ol>
ce887677 437
3fd8d445
BP
438 <p>
439 The interpretation of some of these values depends on whether the
440 process was started with the <option>--monitor</option>. If it
441 was not, then the crash count will always be 0 and the two
442 durations will always be the same. If <option>--monitor</option>
443 was given, then the crash count may be positive; if it is, the
444 latter duration is the amount of time since the most recent crash
445 and restart.
446 </p>
ce887677 447
3fd8d445
BP
448 <p>
449 There will be one key-value pair for each file in Open vSwitch's
450 ``run directory'' (usually <code>/var/run/openvswitch</code>)
451 whose name ends in <code>.pid</code>, whose contents are a
452 process ID, and which is locked by a running process. The
453 <var>name</var> is taken from the pidfile's name.
454 </p>
ce887677 455
3fd8d445
BP
456 <p>
457 Currently Open vSwitch is only able to obtain all of the above
458 detail on Linux systems. On other systems, the same key-value
459 pairs will be present but the values will always be the empty
460 string.
461 </p>
462 </column>
ce887677 463
3fd8d445
BP
464 <column name="statistics" key="file_systems">
465 <p>
466 A space-separated list of information on local, writable file
467 systems. Each item in the list describes one file system and
468 consists in turn of a comma-separated list of the following:
469 </p>
ce887677 470
3fd8d445
BP
471 <ol>
472 <li>Mount point, e.g. <code>/</code> or <code>/var/log</code>.
473 Any spaces or commas in the mount point are replaced by
474 underscores.</li>
475 <li>Total size, in kilobytes, as an integer.</li>
476 <li>Amount of storage in use, in kilobytes, as an integer.</li>
477 </ol>
ce887677 478
3fd8d445
BP
479 <p>
480 This key-value pair is omitted if there are no local, writable
481 file systems or if Open vSwitch cannot obtain the needed
482 information.
483 </p>
484 </column>
485 </group>
89365653 486 </group>
94db5407 487
538c6dfa
BP
488 <group title="Version Reporting">
489 <p>
6b4186af
EJ
490 These columns report the types and versions of the hardware and
491 software running Open vSwitch. We recommend in general that software
492 should test whether specific features are supported instead of relying
493 on version number checks. These values are primarily intended for
494 reporting to human administrators.
538c6dfa
BP
495 </p>
496
497 <column name="ovs_version">
d4da3acc 498 The Open vSwitch version number, e.g. <code>1.1.0</code>.
538c6dfa
BP
499 </column>
500
8159b984 501 <column name="db_version">
6b4186af 502 <p>
8159b984
BP
503 The database schema version number in the form
504 <code><var>major</var>.<var>minor</var>.<var>tweak</var></code>,
505 e.g. <code>1.2.3</code>. Whenever the database schema is changed in
506 a non-backward compatible way (e.g. deleting a column or a table),
507 <var>major</var> is incremented. When the database schema is changed
508 in a backward compatible way (e.g. adding a new column),
509 <var>minor</var> is incremented. When the database schema is changed
510 cosmetically (e.g. reindenting its syntax), <var>tweak</var> is
511 incremented.
512 </p>
513
514 <p>
515 The schema version is part of the database schema, so it can also be
516 retrieved by fetching the schema using the Open vSwitch database
517 protocol.
518 </p>
519 </column>
520
538c6dfa
BP
521 <column name="system_type">
522 <p>
6b4186af
EJ
523 An identifier for the type of system on top of which Open vSwitch
524 runs, e.g. <code>XenServer</code> or <code>KVM</code>.
525 </p>
526 <p>
527 System integrators are responsible for choosing and setting an
528 appropriate value for this column.
529 </p>
538c6dfa
BP
530 </column>
531
532 <column name="system_version">
533 <p>
6b4186af 534 The version of the system identified by <ref column="system_type"/>,
404c1692 535 e.g. <code>5.6.100-39265p</code> on XenServer 5.6.100 build 39265.
6b4186af
EJ
536 </p>
537 <p>
538 System integrators are responsible for choosing and setting an
539 appropriate value for this column.
540 </p>
538c6dfa 541 </column>
6b4186af 542
538c6dfa
BP
543 </group>
544
842733c3
MG
545 <group title="Capabilities">
546 <p>
547 These columns report capabilities of the Open vSwitch instance.
548 </p>
549 <column name="datapath_types">
550 <p>
551 This column reports the different dpifs registered with the system.
552 These are the values that this instance supports in the <ref
553 column="datapath_type" table="Bridge"/> column of the <ref
554 table="Bridge"/> table.
555 </p>
556 </column>
557 <column name="iface_types">
558 <p>
559 This column reports the different netdevs registered with the system.
560 These are the values that this instance supports in the <ref
561 column="type" table="Interface"/> column of the <ref
562 table="Interface"/> table.
563 </p>
564 </column>
565 </group>
566
94db5407
BP
567 <group title="Database Configuration">
568 <p>
569 These columns primarily configure the Open vSwitch database
570 (<code>ovsdb-server</code>), not the Open vSwitch switch
571 (<code>ovs-vswitchd</code>). The OVSDB database also uses the <ref
572 column="ssl"/> settings.
573 </p>
574
575 <p>
576 The Open vSwitch switch does read the database configuration to
577 determine remote IP addresses to which in-band control should apply.
578 </p>
579
580 <column name="manager_options">
581 Database clients to which the Open vSwitch database server should
582 connect or to which it should listen, along with options for how these
583 connection should be configured. See the <ref table="Manager"/> table
584 for more information.
585 </column>
94db5407 586 </group>
3fd8d445
BP
587
588 <group title="Common Columns">
589 The overall purpose of these columns is described under <code>Common
590 Columns</code> at the beginning of this document.
591
592 <column name="other_config"/>
593 <column name="external_ids"/>
594 </group>
89365653
BP
595 </table>
596
597 <table name="Bridge">
598 <p>
599 Configuration for a bridge within an
600 <ref table="Open_vSwitch"/>.
601 </p>
602 <p>
603 A <ref table="Bridge"/> record represents an Ethernet switch with one or
604 more ``ports,'' which are the <ref table="Port"/> records pointed to by
605 the <ref table="Bridge"/>'s <ref column="ports"/> column.
606 </p>
607
608 <group title="Core Features">
609 <column name="name">
3cbe33df 610 <p>
c885f934
BP
611 Bridge identifier. Must be unique among the names of ports,
612 interfaces, and bridges on a host.
3cbe33df
BP
613 </p>
614
615 <p>
c885f934
BP
616 The name must be alphanumeric and must not contain forward or
617 backward slashes. The name of a bridge is also the name of an <ref
618 table="Interface"/> (and a <ref table="Port"/>) within the bridge, so
619 the restrictions on the <ref table="Interface" column="name"/> column
620 in the <ref table="Interface"/> table, particularly on length, also
621 apply to bridge names. Refer to the documentation for <ref
622 table="Interface"/> names for details.
3cbe33df 623 </p>
89365653
BP
624 </column>
625
626 <column name="ports">
627 Ports included in the bridge.
628 </column>
629
630 <column name="mirrors">
631 Port mirroring configuration.
632 </column>
633
634 <column name="netflow">
635 NetFlow configuration.
636 </column>
637
638 <column name="sflow">
29089a54
RL
639 sFlow(R) configuration.
640 </column>
641
642 <column name="ipfix">
643 IPFIX configuration.
89365653
BP
644 </column>
645
646 <column name="flood_vlans">
6c2d2a9f
BP
647 <p>
648 VLAN IDs of VLANs on which MAC address learning should be disabled,
649 so that packets are flooded instead of being sent to specific ports
650 that are believed to contain packets' destination MACs. This should
651 ordinarily be used to disable MAC learning on VLANs used for
652 mirroring (RSPAN VLANs). It may also be useful for debugging.
653 </p>
654 <p>
655 SLB bonding (see the <ref table="Port" column="bond_mode"/> column in
656 the <ref table="Port"/> table) is incompatible with
657 <code>flood_vlans</code>. Consider using another bonding mode or
658 a different type of mirror instead.
659 </p>
89365653 660 </column>
99eef98b
DF
661
662 <column name="auto_attach">
039a8ccd 663 Auto Attach configuration.
99eef98b 664 </column>
89365653
BP
665 </group>
666
667 <group title="OpenFlow Configuration">
668 <column name="controller">
88f69f88
BP
669 <p>
670 OpenFlow controller set. If unset, then no OpenFlow controllers
671 will be used.
672 </p>
673
674 <p>
675 If there are primary controllers, removing all of them clears the
676 flow table. If there are no primary controllers, adding one also
677 clears the flow table. Other changes to the set of controllers, such
678 as adding or removing a service controller, adding another primary
679 controller to supplement an existing primary controller, or removing
680 only one of two primary controllers, have no effect on the flow
681 table.
682 </p>
89365653
BP
683 </column>
684
254750ce
BP
685 <column name="flow_tables">
686 Configuration for OpenFlow tables. Each pair maps from an OpenFlow
687 table ID to configuration for that table.
688 </column>
689
31681a5d
JP
690 <column name="fail_mode">
691 <p>When a controller is configured, it is, ordinarily, responsible
3fd8d445
BP
692 for setting up all flows on the switch. Thus, if the connection to
693 the controller fails, no new network connections can be set up.
694 If the connection to the controller stays down long enough,
695 no packets can pass through the switch at all. This setting
696 determines the switch's response to such a situation. It may be set
697 to one of the following:
698 <dl>
699 <dt><code>standalone</code></dt>
700 <dd>If no message is received from the controller for three
701 times the inactivity probe interval
702 (see <ref column="inactivity_probe"/>), then Open vSwitch
703 will take over responsibility for setting up flows. In
704 this mode, Open vSwitch causes the bridge to act like an
705 ordinary MAC-learning switch. Open vSwitch will continue
706 to retry connecting to the controller in the background
707 and, when the connection succeeds, it will discontinue its
708 standalone behavior.</dd>
709 <dt><code>secure</code></dt>
710 <dd>Open vSwitch will not set up flows on its own when the
711 controller connection fails or when no controllers are
712 defined. The bridge will continue to retry connecting to
713 any defined controllers forever.</dd>
714 </dl>
31681a5d 715 </p>
aed2db18
BP
716 <p>
717 The default is <code>standalone</code> if the value is unset, but
718 future versions of Open vSwitch may change the default.
719 </p>
7dea6ace
BP
720 <p>
721 The <code>standalone</code> mode can create forwarding loops on a
722 bridge that has more than one uplink port unless STP is enabled. To
723 avoid loops on such a bridge, configure <code>secure</code> mode or
724 enable STP (see <ref column="stp_enable"/>).
725 </p>
299a244b 726 <p>When more than one controller is configured,
3fd8d445
BP
727 <ref column="fail_mode"/> is considered only when none of the
728 configured controllers can be contacted.</p>
88f69f88
BP
729 <p>
730 Changing <ref column="fail_mode"/> when no primary controllers are
731 configured clears the flow table.
732 </p>
31681a5d
JP
733 </column>
734
89365653 735 <column name="datapath_id">
8de67146
BP
736 Reports the OpenFlow datapath ID in use. Exactly 16 hex digits.
737 (Setting this column has no useful effect. Set <ref
738 column="other-config" key="datapath-id"/> instead.)
89365653 739 </column>
3fd8d445 740
b5cbbcf6
AZ
741 <column name="datapath_version">
742 <p>
743 Reports the version number of the Open vSwitch datapath in use.
744 This allows management software to detect and report discrepancies
745 between Open vSwitch userspace and datapath versions. (The <ref
746 column="ovs_version" table="Open_vSwitch"/> column in the <ref
747 table="Open_vSwitch"/> reports the Open vSwitch userspace version.)
748 The version reported depends on the datapath in use:
749 </p>
750
751 <ul>
752 <li>
753 When the kernel module included in the Open vSwitch source tree is
754 used, this column reports the Open vSwitch version from which the
755 module was taken.
756 </li>
757
758 <li>
759 When the kernel module that is part of the upstream Linux kernel is
760 used, this column reports <code>&lt;unknown&gt;</code>.
761 </li>
762
763 <li>
764 When the datapath is built into the <code>ovs-vswitchd</code>
765 binary, this column reports <code>&lt;built-in&gt;</code>. A
766 built-in datapath is by definition the same version as the rest of
767 the Open VSwitch userspace.
768 </li>
769
770 <li>
771 Other datapaths (such as the Hyper-V kernel datapath) currently
772 report <code>&lt;unknown&gt;</code>.
773 </li>
774 </ul>
775
776 <p>
777 A version discrepancy between <code>ovs-vswitchd</code> and the
778 datapath in use is not normally cause for alarm. The Open vSwitch
779 kernel datapaths for Linux and Hyper-V, in particular, are designed
780 for maximum inter-version compatibility: any userspace version works
781 with with any kernel version. Some reasons do exist to insist on
782 particular user/kernel pairings. First, newer kernel versions add
783 new features, that can only be used by new-enough userspace, e.g.
784 VXLAN tunneling requires certain minimal userspace and kernel
785 versions. Second, as an extension to the first reason, some newer
786 kernel versions add new features for enhancing performance that only
787 new-enough userspace versions can take advantage of.
788 </p>
789 </column>
790
3fd8d445
BP
791 <column name="other_config" key="datapath-id">
792 Exactly 16 hex digits to set the OpenFlow datapath ID to a specific
793 value. May not be all-zero.
794 </column>
795
8b6ff729
BP
796 <column name="other_config" key="dp-desc">
797 Human readable description of datapath. It it a maximum 256
798 byte-long free-form string to describe the datapath for
799 debugging purposes, e.g. <code>switch3 in room 3120</code>.
800 </column>
801
f9e5e5b3
BP
802 <column name="other_config" key="disable-in-band"
803 type='{"type": "boolean"}'>
3fd8d445
BP
804 If set to <code>true</code>, disable in-band control on the bridge
805 regardless of controller and manager settings.
806 </column>
807
f9e5e5b3
BP
808 <column name="other_config" key="in-band-queue"
809 type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
3fd8d445
BP
810 A queue ID as a nonnegative integer. This sets the OpenFlow queue ID
811 that will be used by flows set up by in-band control on this bridge.
812 If unset, or if the port used by an in-band control flow does not have
813 QoS configured, or if the port does not have a queue with the specified
814 ID, the default queue is used instead.
815 </column>
7beaa082
SH
816
817 <column name="protocols">
039a8ccd
BP
818 <p>
819 List of OpenFlow protocols that may be used when negotiating
820 a connection with a controller. OpenFlow 1.0, 1.1, 1.2, and
821 1.3 are enabled by default if this column is empty.
822 </p>
ecb229be 823
039a8ccd 824 <p>
b79d45a1
BP
825 OpenFlow 1.4, 1.5, and 1.6 are not enabled by default because their
826 implementations are missing features. In addition, the OpenFlow 1.6
827 specification is still under development and thus subject to change.
42dccab5 828 </p>
7beaa082 829 </column>
89365653
BP
830 </group>
831
21f7563c 832 <group title="Spanning Tree Configuration">
01f13d4f
BP
833 <p>
834 The IEEE 802.1D Spanning Tree Protocol (STP) is a network protocol
835 that ensures loop-free topologies. It allows redundant links to
836 be included in the network to provide automatic backup paths if
837 the active links fails.
838 </p>
9cc6bf75 839
01f13d4f
BP
840 <p>
841 These settings configure the slower-to-converge but still widely
842 supported version of Spanning Tree Protocol, sometimes known as
843 802.1D-1998. Open vSwitch also supports the newer Rapid Spanning Tree
844 Protocol (RSTP), documented later in the section titled <code>Rapid
845 Spanning Tree Configuration</code>.
846 </p>
21f7563c 847
01f13d4f
BP
848 <group title="STP Configuration">
849 <column name="stp_enable" type='{"type": "boolean"}'>
850 <p>
851 Enable spanning tree on the bridge. By default, STP is disabled
852 on bridges. Bond, internal, and mirror ports are not supported
853 and will not participate in the spanning tree.
854 </p>
21f7563c 855
01f13d4f
BP
856 <p>
857 STP and RSTP are mutually exclusive. If both are enabled, RSTP
858 will be used.
859 </p>
860 </column>
21f7563c 861
01f13d4f
BP
862 <column name="other_config" key="stp-system-id">
863 The bridge's STP identifier (the lower 48 bits of the bridge-id)
864 in the form
865 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
866 By default, the identifier is the MAC address of the bridge.
867 </column>
21f7563c 868
01f13d4f
BP
869 <column name="other_config" key="stp-priority"
870 type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
871 The bridge's relative priority value for determining the root
872 bridge (the upper 16 bits of the bridge-id). A bridge with the
873 lowest bridge-id is elected the root. By default, the priority
874 is 0x8000.
875 </column>
dc2b70ba 876
01f13d4f
BP
877 <column name="other_config" key="stp-hello-time"
878 type='{"type": "integer", "minInteger": 1, "maxInteger": 10}'>
879 The interval between transmissions of hello messages by
880 designated ports, in seconds. By default the hello interval is
881 2 seconds.
882 </column>
dc2b70ba 883
01f13d4f
BP
884 <column name="other_config" key="stp-max-age"
885 type='{"type": "integer", "minInteger": 6, "maxInteger": 40}'>
886 The maximum age of the information transmitted by the bridge
887 when it is the root bridge, in seconds. By default, the maximum
888 age is 20 seconds.
889 </column>
890
891 <column name="other_config" key="stp-forward-delay"
892 type='{"type": "integer", "minInteger": 4, "maxInteger": 30}'>
893 The delay to wait between transitioning root and designated
894 ports to <code>forwarding</code>, in seconds. By default, the
895 forwarding delay is 15 seconds.
896 </column>
897
898 <column name="other_config" key="mcast-snooping-aging-time"
899 type='{"type": "integer", "minInteger": 1}'>
900 <p>
901 The maximum number of seconds to retain a multicast snooping entry for
902 which no packets have been seen. The default is currently 300
903 seconds (5 minutes). The value, if specified, is forced into a
904 reasonable range, currently 15 to 3600 seconds.
905 </p>
906 </column>
907
908 <column name="other_config" key="mcast-snooping-table-size"
909 type='{"type": "integer", "minInteger": 1}'>
910 <p>
911 The maximum number of multicast snooping addresses to learn. The
912 default is currently 2048. The value, if specified, is forced into
913 a reasonable range, currently 10 to 1,000,000.
914 </p>
915 </column>
916 <column name="other_config" key="mcast-snooping-disable-flood-unregistered"
917 type='{"type": "boolean"}'>
918 <p>
919 If set to <code>false</code>, unregistered multicast packets are forwarded
920 to all ports.
921 If set to <code>true</code>, unregistered multicast packets are forwarded
922 to ports connected to multicast routers.
923 </p>
924 </column>
925 </group>
926
927 <group title="STP Status">
dc2b70ba 928 <p>
01f13d4f
BP
929 These key-value pairs report the status of 802.1D-1998. They are
930 present only if STP is enabled (via the <ref column="stp_enable"/>
931 column).
dc2b70ba 932 </p>
01f13d4f
BP
933 <column name="status" key="stp_bridge_id">
934 The bridge ID used in spanning tree advertisements, in the form
935 <var>xxxx</var>.<var>yyyyyyyyyyyy</var> where the <var>x</var>s are
936 the STP priority, the <var>y</var>s are the STP system ID, and each
937 <var>x</var> and <var>y</var> is a hex digit.
938 </column>
939 <column name="status" key="stp_designated_root">
940 The designated root for this spanning tree, in the same form as <ref
941 column="status" key="stp_bridge_id"/>. If this bridge is the root,
942 this will have the same value as <ref column="status"
943 key="stp_bridge_id"/>, otherwise it will differ.
944 </column>
945 <column name="status" key="stp_root_path_cost">
946 The path cost of reaching the designated bridge. A lower number is
947 better. The value is 0 if this bridge is the root, otherwise it is
948 higher.
949 </column>
950 </group>
951 </group>
952
953 <group title="Rapid Spanning Tree">
954 <p>
955 Rapid Spanning Tree Protocol (RSTP), like STP, is a network protocol
956 that ensures loop-free topologies. RSTP superseded STP with the
957 publication of 802.1D-2004. Compared to STP, RSTP converges more
958 quickly and recovers more quickly from failures.
959 </p>
960
961 <group title="RSTP Configuration">
962 <column name="rstp_enable" type='{"type": "boolean"}'>
963 <p>
964 Enable Rapid Spanning Tree on the bridge. By default, RSTP is disabled
965 on bridges. Bond, internal, and mirror ports are not supported
966 and will not participate in the spanning tree.
967 </p>
968
969 <p>
970 STP and RSTP are mutually exclusive. If both are enabled, RSTP
971 will be used.
972 </p>
973 </column>
974
975 <column name="other_config" key="rstp-address">
976 The bridge's RSTP address (the lower 48 bits of the bridge-id)
977 in the form
978 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
979 By default, the address is the MAC address of the bridge.
980 </column>
981
982 <column name="other_config" key="rstp-priority"
983 type='{"type": "integer", "minInteger": 0, "maxInteger": 61440}'>
984 The bridge's relative priority value for determining the root
985 bridge (the upper 16 bits of the bridge-id). A bridge with the
986 lowest bridge-id is elected the root. By default, the priority
987 is 0x8000 (32768). This value needs to be a multiple of 4096,
988 otherwise it's rounded to the nearest inferior one.
989 </column>
990
991 <column name="other_config" key="rstp-ageing-time"
992 type='{"type": "integer", "minInteger": 10, "maxInteger": 1000000}'>
993 The Ageing Time parameter for the Bridge. The default value
994 is 300 seconds.
995 </column>
996
997 <column name="other_config" key="rstp-force-protocol-version"
998 type='{"type": "integer"}'>
999 The Force Protocol Version parameter for the Bridge. This
1000 can take the value 0 (STP Compatibility mode) or 2
1001 (the default, normal operation).
1002 </column>
1003
1004 <column name="other_config" key="rstp-max-age"
1005 type='{"type": "integer", "minInteger": 6, "maxInteger": 40}'>
1006 The maximum age of the information transmitted by the Bridge
1007 when it is the Root Bridge. The default value is 20.
1008 </column>
1009
1010 <column name="other_config" key="rstp-forward-delay"
1011 type='{"type": "integer", "minInteger": 4, "maxInteger": 30}'>
1012 The delay used by STP Bridges to transition Root and Designated
1013 Ports to Forwarding. The default value is 15.
1014 </column>
1015
1016 <column name="other_config" key="rstp-transmit-hold-count"
1017 type='{"type": "integer", "minInteger": 1, "maxInteger": 10}'>
1018 The Transmit Hold Count used by the Port Transmit state machine
1019 to limit transmission rate. The default value is 6.
1020 </column>
1021 </group>
1022
1023 <group title="RSTP Status">
dc2b70ba 1024 <p>
01f13d4f
BP
1025 These key-value pairs report the status of 802.1D-2004. They are
1026 present only if RSTP is enabled (via the <ref column="rstp_enable"/>
1027 column).
dc2b70ba 1028 </p>
01f13d4f
BP
1029 <column name="rstp_status" key="rstp_bridge_id">
1030 The bridge ID used in rapid spanning tree advertisements, in the form
1031 <var>x</var>.<var>yyy</var>.<var>zzzzzzzzzzzz</var> where
1032 <var>x</var> is the RSTP priority, the <var>y</var>s are a locally
1033 assigned system ID extension, the <var>z</var>s are the STP system
1034 ID, and each <var>x</var>, <var>y</var>, or <var>z</var> is a hex
1035 digit.
1036 </column>
1037 <column name="rstp_status" key="rstp_root_id">
1038 The root of this spanning tree, in the same form as <ref
1039 column="rstp_status" key="rstp_bridge_id"/>. If this bridge is the
1040 root, this will have the same value as <ref column="rstp_status"
1041 key="rstp_bridge_id"/>, otherwise it will differ.
1042 </column>
1043 <column name="rstp_status" key="rstp_root_path_cost"
1044 type='{"type": "integer", "minInteger": 0}'>
1045 The path cost of reaching the root. A lower number is better. The
1046 value is 0 if this bridge is the root, otherwise it is higher.
1047 </column>
1048 <column name="rstp_status" key="rstp_designated_id">
1049 The RSTP designated ID, in the same form as <ref column="rstp_status"
1050 key="rstp_bridge_id"/>.
1051 </column>
1052 <column name="rstp_status" key="rstp_designated_port_id">
1053 The RSTP designated port ID, as a 4-digit hex number.
1054 </column>
1055 <column name="rstp_status" key="rstp_bridge_port_id">
1056 The RSTP bridge port ID, as a 4-digit hex number.
1057 </column>
1058 </group>
dc2b70ba
FL
1059 </group>
1060
1061 <group title="Multicast Snooping Configuration">
1062 Multicast snooping (RFC 4541) monitors the Internet Group Management
06994f87
TLSC
1063 Protocol (IGMP) and Multicast Listener Discovery traffic between hosts
1064 and multicast routers. The switch uses what IGMP and MLD snooping
1065 learns to forward multicast traffic only to interfaces that are connected
1066 to interested receivers. Currently it supports IGMPv1, IGMPv2, IGMPv3,
1067 MLDv1 and MLDv2 protocols.
dc2b70ba
FL
1068
1069 <column name="mcast_snooping_enable">
1070 Enable multicast snooping on the bridge. For now, the default
1071 is disabled.
1072 </column>
21f7563c
JP
1073 </group>
1074
89365653
BP
1075 <group title="Other Features">
1076 <column name="datapath_type">
842733c3
MG
1077 Name of datapath provider. The kernel datapath has type
1078 <code>system</code>. The userspace datapath has type
1079 <code>netdev</code>. A manager may refer to the <ref
1080 table="Open_vSwitch" column="datapath_types"/> column of the <ref
1081 table="Open_vSwitch"/> table for a list of the types accepted by this
1082 Open vSwitch instance.
89365653
BP
1083 </column>
1084
3fd8d445
BP
1085 <column name="external_ids" key="bridge-id">
1086 A unique identifier of the bridge. On Citrix XenServer this will
1087 commonly be the same as
1088 <ref column="external_ids" key="xs-network-uuids"/>.
89365653
BP
1089 </column>
1090
3fd8d445
BP
1091 <column name="external_ids" key="xs-network-uuids">
1092 Semicolon-delimited set of universally unique identifier(s) for the
1093 network with which this bridge is associated on a Citrix XenServer
1094 host. The network identifiers are RFC 4122 UUIDs as displayed by,
1095 e.g., <code>xe network-list</code>.
1096 </column>
1097
1098 <column name="other_config" key="hwaddr">
1099 An Ethernet address in the form
1100 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
1101 to set the hardware address of the local port and influence the
1102 datapath ID.
1103 </column>
1104
f9e5e5b3
BP
1105 <column name="other_config" key="forward-bpdu"
1106 type='{"type": "boolean"}'>
da1e25d5 1107
039a8ccd 1108 <p>
da1e25d5
BP
1109 Controls forwarding of BPDUs and other network control frames when
1110 NORMAL action is invoked. When this option is <code>false</code> or
1111 unset, frames with reserved Ethernet addresses (see table below) will
1112 not be forwarded. When this option is <code>true</code>, such frames
1113 will not be treated specially.
039a8ccd
BP
1114 </p>
1115
1116 <p>
1117 The above general rule has the following exceptions:
1118 </p>
1119
1120 <ul>
1121 <li>
1122 If STP is enabled on the bridge (see the <ref column="stp_enable"
1123 table="Bridge"/> column in the <ref table="Bridge"/> table), the
1124 bridge processes all received STP packets and never passes them to
1125 OpenFlow or forwards them. This is true even if STP is disabled on
1126 an individual port.
1127 </li>
1128
1129 <li>
1130 If LLDP is enabled on an interface (see the <ref column="lldp"
1131 table="Interface"/> column in the <ref table="Interface"/> table),
1132 the interface processes received LLDP packets and never passes them
1133 to OpenFlow or forwards them.
1134 </li>
1135 </ul>
1136
1137 <p>
1138 Set this option to <code>true</code> if the Open vSwitch bridge
1139 connects different Ethernet networks and is not configured to
1140 participate in STP.
1141 </p>
1142
1143 <p>
1144 This option affects packets with the following destination MAC
1145 addresses:
1146 </p>
da1e25d5 1147
05be4e2c
EJ
1148 <dl>
1149 <dt><code>01:80:c2:00:00:00</code></dt>
1150 <dd>IEEE 802.1D Spanning Tree Protocol (STP).</dd>
1151
1152 <dt><code>01:80:c2:00:00:01</code></dt>
1153 <dd>IEEE Pause frame.</dd>
1154
1155 <dt><code>01:80:c2:00:00:0<var>x</var></code></dt>
1156 <dd>Other reserved protocols.</dd>
1157
7d48a4cc
BP
1158 <dt><code>00:e0:2b:00:00:00</code></dt>
1159 <dd>Extreme Discovery Protocol (EDP).</dd>
c93f9a78 1160
7d48a4cc 1161 <dt>
039a8ccd
BP
1162 <code>00:e0:2b:00:00:04</code> and <code>00:e0:2b:00:00:06</code>
1163 </dt>
7d48a4cc 1164 <dd>Ethernet Automatic Protection Switching (EAPS).</dd>
c93f9a78 1165
05be4e2c
EJ
1166 <dt><code>01:00:0c:cc:cc:cc</code></dt>
1167 <dd>
1168 Cisco Discovery Protocol (CDP), VLAN Trunking Protocol (VTP),
1169 Dynamic Trunking Protocol (DTP), Port Aggregation Protocol (PAgP),
1170 and others.
1171 </dd>
1172
1173 <dt><code>01:00:0c:cc:cc:cd</code></dt>
1174 <dd>Cisco Shared Spanning Tree Protocol PVSTP+.</dd>
1175
1176 <dt><code>01:00:0c:cd:cd:cd</code></dt>
1177 <dd>Cisco STP Uplink Fast.</dd>
1178
1179 <dt><code>01:00:0c:00:00:00</code></dt>
1180 <dd>Cisco Inter Switch Link.</dd>
7d48a4cc
BP
1181
1182 <dt><code>01:00:0c:cc:cc:c<var>x</var></code></dt>
1183 <dd>Cisco CFM.</dd>
05be4e2c 1184 </dl>
21f7563c 1185 </column>
e764773c
BP
1186
1187 <column name="other_config" key="mac-aging-time"
1188 type='{"type": "integer", "minInteger": 1}'>
1189 <p>
1190 The maximum number of seconds to retain a MAC learning entry for
1191 which no packets have been seen. The default is currently 300
1192 seconds (5 minutes). The value, if specified, is forced into a
1193 reasonable range, currently 15 to 3600 seconds.
1194 </p>
1195
1196 <p>
1197 A short MAC aging time allows a network to more quickly detect that a
1198 host is no longer connected to a switch port. However, it also makes
1199 it more likely that packets will be flooded unnecessarily, when they
1200 are addressed to a connected host that rarely transmits packets. To
1201 reduce the incidence of unnecessary flooding, use a MAC aging time
1202 longer than the maximum interval at which a host will ordinarily
1203 transmit packets.
1204 </p>
1205 </column>
c4069512
BP
1206
1207 <column name="other_config" key="mac-table-size"
1208 type='{"type": "integer", "minInteger": 1}'>
1209 <p>
1210 The maximum number of MAC addresses to learn. The default is
1211 currently 2048. The value, if specified, is forced into a reasonable
1212 range, currently 10 to 1,000,000.
1213 </p>
1214 </column>
21f7563c
JP
1215 </group>
1216
3fd8d445
BP
1217 <group title="Common Columns">
1218 The overall purpose of these columns is described under <code>Common
1219 Columns</code> at the beginning of this document.
1220
1221 <column name="other_config"/>
1222 <column name="external_ids"/>
1223 </group>
89365653 1224 </table>
039a8ccd
BP
1225
1226 <table name="Port" table="Port or bond configuration.">
89365653
BP
1227 <p>A port within a <ref table="Bridge"/>.</p>
1228 <p>Most commonly, a port has exactly one ``interface,'' pointed to by its
3fd8d445
BP
1229 <ref column="interfaces"/> column. Such a port logically
1230 corresponds to a port on a physical Ethernet switch. A port
1231 with more than one interface is a ``bonded port'' (see
1232 <ref group="Bonding Configuration"/>).</p>
89365653 1233 <p>Some properties that one might think as belonging to a port are actually
3fd8d445 1234 part of the port's <ref table="Interface"/> members.</p>
89365653
BP
1235
1236 <column name="name">
c885f934
BP
1237 Port name. For a non-bonded port, this should be the same as its
1238 interface's name. Port names must otherwise be unique among the names of
1239 ports, interfaces, and bridges on a host. Because port and interfaces
1240 names are usually the same, the restrictions on the <ref
1241 table="Interface" column="name"/> column in the <ref table="Interface"/>
1242 table, particularly on length, also apply to port names. Refer to the
1243 documentation for <ref table="Interface"/> names for details.
89365653
BP
1244 </column>
1245
1246 <column name="interfaces">
1247 The port's interfaces. If there is more than one, this is a
1248 bonded Port.
1249 </column>
1250
1251 <group title="VLAN Configuration">
ecac4ebf
BP
1252 <p>Bridge ports support the following types of VLAN configuration:</p>
1253 <dl>
1254 <dt>trunk</dt>
1255 <dd>
1256 <p>
1257 A trunk port carries packets on one or more specified VLANs
1258 specified in the <ref column="trunks"/> column (often, on every
1259 VLAN). A packet that ingresses on a trunk port is in the VLAN
1260 specified in its 802.1Q header, or VLAN 0 if the packet has no
1261 802.1Q header. A packet that egresses through a trunk port will
5e9ceccd 1262 have an 802.1Q header if it has a nonzero VLAN ID.
ecac4ebf
BP
1263 </p>
1264
1265 <p>
1266 Any packet that ingresses on a trunk port tagged with a VLAN that
1267 the port does not trunk is dropped.
1268 </p>
1269 </dd>
1270
1271 <dt>access</dt>
1272 <dd>
1273 <p>
1274 An access port carries packets on exactly one VLAN specified in the
5e9ceccd
BP
1275 <ref column="tag"/> column. Packets egressing on an access port
1276 have no 802.1Q header.
ecac4ebf
BP
1277 </p>
1278
1279 <p>
5e9ceccd
BP
1280 Any packet with an 802.1Q header with a nonzero VLAN ID that
1281 ingresses on an access port is dropped, regardless of whether the
1282 VLAN ID in the header is the access port's VLAN ID.
ecac4ebf
BP
1283 </p>
1284 </dd>
1285
1286 <dt>native-tagged</dt>
1287 <dd>
1288 A native-tagged port resembles a trunk port, with the exception that
1289 a packet without an 802.1Q header that ingresses on a native-tagged
1290 port is in the ``native VLAN'' (specified in the <ref column="tag"/>
1291 column).
1292 </dd>
1293
1294 <dt>native-untagged</dt>
1295 <dd>
1296 A native-untagged port resembles a native-tagged port, with the
1297 exception that a packet that egresses on a native-untagged port in
5e9ceccd 1298 the native VLAN will not have an 802.1Q header.
ecac4ebf
BP
1299 </dd>
1300 </dl>
1301 <p>
1302 A packet will only egress through bridge ports that carry the VLAN of
1303 the packet, as described by the rules above.
89365653
BP
1304 </p>
1305
ecac4ebf 1306 <column name="vlan_mode">
7894d33b 1307 <p>
ecac4ebf
BP
1308 The VLAN mode of the port, as described above. When this column is
1309 empty, a default mode is selected as follows:
7894d33b 1310 </p>
ecac4ebf
BP
1311 <ul>
1312 <li>
1313 If <ref column="tag"/> contains a value, the port is an access
1314 port. The <ref column="trunks"/> column should be empty.
1315 </li>
1316 <li>
1317 Otherwise, the port is a trunk port. The <ref column="trunks"/>
1318 column value is honored if it is present.
1319 </li>
1320 </ul>
1321 </column>
1322
1323 <column name="tag">
7894d33b 1324 <p>
ecac4ebf
BP
1325 For an access port, the port's implicitly tagged VLAN. For a
1326 native-tagged or native-untagged port, the port's native VLAN. Must
1327 be empty if this is a trunk port.
7894d33b 1328 </p>
89365653
BP
1329 </column>
1330
1331 <column name="trunks">
7894d33b 1332 <p>
ecac4ebf
BP
1333 For a trunk, native-tagged, or native-untagged port, the 802.1Q VLAN
1334 or VLANs that this port trunks; if it is empty, then the port trunks
1335 all VLANs. Must be empty if this is an access port.
7894d33b
BP
1336 </p>
1337 <p>
ecac4ebf
BP
1338 A native-tagged or native-untagged port always trunks its native
1339 VLAN, regardless of whether <ref column="trunks"/> includes that
1340 VLAN.
7894d33b 1341 </p>
89365653 1342 </column>
5e9ceccd
BP
1343
1344 <column name="other_config" key="priority-tags"
1345 type='{"type": "boolean"}'>
1346 <p>
1347 An 802.1Q header contains two important pieces of information: a VLAN
1348 ID and a priority. A frame with a zero VLAN ID, called a
1349 ``priority-tagged'' frame, is supposed to be treated the same way as
1350 a frame without an 802.1Q header at all (except for the priority).
1351 </p>
1352
1353 <p>
1354 However, some network elements ignore any frame that has 802.1Q
1355 header at all, even when the VLAN ID is zero. Therefore, by default
1356 Open vSwitch does not output priority-tagged frames, instead omitting
1357 the 802.1Q header entirely if the VLAN ID is zero. Set this key to
1358 <code>true</code> to enable priority-tagged frames on a port.
1359 </p>
1360
1361 <p>
1362 Regardless of this setting, Open vSwitch omits the 802.1Q header on
1363 output if both the VLAN ID and priority would be zero.
1364 </p>
1365
1366 <p>
1367 All frames output to native-tagged ports have a nonzero VLAN ID, so
1368 this setting is not meaningful on native-tagged ports.
1369 </p>
1370 </column>
89365653
BP
1371 </group>
1372
1373 <group title="Bonding Configuration">
be02e7c3 1374 <p>A port that has more than one interface is a ``bonded port.'' Bonding
d64e1870
BP
1375 allows for load balancing and fail-over.</p>
1376
1377 <p>
1378 The following types of bonding will work with any kind of upstream
1379 switch. On the upstream switch, do not configure the interfaces as a
1380 bond:
1381 </p>
9f5073d8
EJ
1382
1383 <dl>
1384 <dt><code>balance-slb</code></dt>
1385 <dd>
1386 Balances flows among slaves based on source MAC address and output
1387 VLAN, with periodic rebalancing as traffic patterns change.
1388 </dd>
1389
1390 <dt><code>active-backup</code></dt>
1391 <dd>
1392 Assigns all flows to one slave, failing over to a backup slave when
629d868c
BP
1393 the active slave is disabled. This is the only bonding mode in which
1394 interfaces may be plugged into different upstream switches.
9f5073d8
EJ
1395 </dd>
1396 </dl>
1397
1398 <p>
fb0b29a3 1399 The following modes require the upstream switch to support 802.3ad with
9dd165e0
RK
1400 successful LACP negotiation. If LACP negotiation fails and
1401 other-config:lacp-fallback-ab is true, then <code>active-backup</code>
1402 mode is used:
9f5073d8
EJ
1403 </p>
1404
1405 <dl>
1406 <dt><code>balance-tcp</code></dt>
1407 <dd>
1408 Balances flows among slaves based on L2, L3, and L4 protocol
1409 information such as destination MAC address, IP address, and TCP
1410 port.
1411 </dd>
fb0b29a3
EJ
1412 </dl>
1413
89365653 1414 <p>These columns apply only to bonded ports. Their values are
3fd8d445 1415 otherwise ignored.</p>
89365653 1416
27dcaa1a 1417 <column name="bond_mode">
9f5073d8 1418 <p>The type of bonding used for a bonded port. Defaults to
4df08875 1419 <code>active-backup</code> if unset.
9f5073d8 1420 </p>
be02e7c3
EJ
1421 </column>
1422
96ada1a4
EJ
1423 <column name="other_config" key="bond-hash-basis"
1424 type='{"type": "integer"}'>
1425 An integer hashed along with flows when choosing output slaves in load
1426 balanced bonds. When changed, all flows will be assigned different
1427 hash values possibly causing slave selection decisions to change. Does
1428 not affect bonding modes which do not employ load balancing such as
1429 <code>active-backup</code>.
1430 </column>
1431
3fd8d445
BP
1432 <group title="Link Failure Detection">
1433 <p>
1434 An important part of link bonding is detecting that links are down so
1435 that they may be disabled. These settings determine how Open vSwitch
1436 detects link failure.
1437 </p>
89365653 1438
f9e5e5b3
BP
1439 <column name="other_config" key="bond-detect-mode"
1440 type='{"type": "string", "enum": ["set", ["carrier", "miimon"]]}'>
1441 The means used to detect link failures. Defaults to
3fd8d445
BP
1442 <code>carrier</code> which uses each interface's carrier to detect
1443 failures. When set to <code>miimon</code>, will check for failures
1444 by polling each interface's MII.
1445 </column>
89365653 1446
f9e5e5b3
BP
1447 <column name="other_config" key="bond-miimon-interval"
1448 type='{"type": "integer"}'>
3fd8d445
BP
1449 The interval, in milliseconds, between successive attempts to poll
1450 each interface's MII. Relevant only when <ref column="other_config"
1451 key="bond-detect-mode"/> is <code>miimon</code>.
1452 </column>
1453
1454 <column name="bond_updelay">
1455 <p>
1c144051 1456 The number of milliseconds for which the link must stay up on an
3fd8d445
BP
1457 interface before the interface is considered to be up. Specify
1458 <code>0</code> to enable the interface immediately.
1459 </p>
1460
1461 <p>
1462 This setting is honored only when at least one bonded interface is
1463 already enabled. When no interfaces are enabled, then the first
1464 bond interface to come up is enabled immediately.
1465 </p>
1466 </column>
1467
1468 <column name="bond_downdelay">
1c144051 1469 The number of milliseconds for which the link must stay down on an
3fd8d445
BP
1470 interface before the interface is considered to be down. Specify
1471 <code>0</code> to disable the interface immediately.
1472 </column>
1473 </group>
c25c91fd 1474
3fd8d445
BP
1475 <group title="LACP Configuration">
1476 <p>
1477 LACP, the Link Aggregation Control Protocol, is an IEEE standard that
1478 allows switches to automatically detect that they are connected by
1479 multiple links and aggregate across those links. These settings
1480 control LACP behavior.
1481 </p>
1482
1483 <column name="lacp">
1484 Configures LACP on this port. LACP allows directly connected
76ea8efd
AE
1485 switches to negotiate which links may be bonded. LACP may be enabled
1486 on non-bonded ports for the benefit of any switches they may be
c25c91fd
EJ
1487 connected to. <code>active</code> ports are allowed to initiate LACP
1488 negotiations. <code>passive</code> ports are allowed to participate
1489 in LACP negotiations initiated by a remote switch, but not allowed to
bdebeece
EJ
1490 initiate such negotiations themselves. If LACP is enabled on a port
1491 whose partner switch does not support LACP, the bond will be
9dd165e0
RK
1492 disabled, unless other-config:lacp-fallback-ab is set to true.
1493 Defaults to <code>off</code> if unset.
3fd8d445
BP
1494 </column>
1495
1496 <column name="other_config" key="lacp-system-id">
1497 The LACP system ID of this <ref table="Port"/>. The system ID of a
1498 LACP bond is used to identify itself to its partners. Must be a
a9bf011b
EJ
1499 nonzero MAC address. Defaults to the bridge Ethernet address if
1500 unset.
3fd8d445
BP
1501 </column>
1502
f9e5e5b3
BP
1503 <column name="other_config" key="lacp-system-priority"
1504 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
3fd8d445
BP
1505 The LACP system priority of this <ref table="Port"/>. In LACP
1506 negotiations, link status decisions are made by the system with the
f9e5e5b3 1507 numerically lower priority.
3fd8d445
BP
1508 </column>
1509
bf83f7c8 1510 <column name="other_config" key="lacp-time"
039a8ccd 1511 type='{"type": "string", "enum": ["set", ["fast", "slow"]]}'>
3fd8d445
BP
1512 <p>
1513 The LACP timing which should be used on this <ref table="Port"/>.
bf83f7c8
EJ
1514 By default <code>slow</code> is used. When configured to be
1515 <code>fast</code> LACP heartbeats are requested at a rate of once
1516 per second causing connectivity problems to be detected more
1517 quickly. In <code>slow</code> mode, heartbeats are requested at a
1518 rate of once every 30 seconds.
3fd8d445
BP
1519 </p>
1520 </column>
9dd165e0
RK
1521
1522 <column name="other_config" key="lacp-fallback-ab"
039a8ccd 1523 type='{"type": "boolean"}'>
9dd165e0
RK
1524 <p>
1525 Determines the behavior of openvswitch bond in LACP mode. If
1526 the partner switch does not support LACP, setting this option
1527 to <code>true</code> allows openvswitch to fallback to
1528 active-backup. If the option is set to <code>false</code>, the
1529 bond will be disabled. In both the cases, once the partner switch
1530 is configured to LACP mode, the bond will use LACP.
1531 </p>
1532 </column>
3fd8d445
BP
1533 </group>
1534
b62ee96f 1535 <group title="Rebalancing Configuration">
3fd8d445
BP
1536 <p>
1537 These settings control behavior when a bond is in
b62ee96f 1538 <code>balance-slb</code> or <code>balance-tcp</code> mode.
3fd8d445
BP
1539 </p>
1540
f9e5e5b3 1541 <column name="other_config" key="bond-rebalance-interval"
bc1b010c
EJ
1542 type='{"type": "integer", "minInteger": 0, "maxInteger": 10000}'>
1543 For a load balanced bonded port, the number of milliseconds between
1544 successive attempts to rebalance the bond, that is, to move flows
1545 from one interface on the bond to another in an attempt to keep usage
1546 of each interface roughly equal. If zero, load balancing is disabled
1c144051 1547 on the bond (link failure still cause flows to move). If
bc1b010c 1548 less than 1000ms, the rebalance interval will be 1000ms.
3fd8d445
BP
1549 </column>
1550 </group>
1551
1552 <column name="bond_fake_iface">
1553 For a bonded port, whether to create a fake internal interface with the
1554 name of the port. Use only for compatibility with legacy software that
1555 requires this.
1556 </column>
89365653
BP
1557 </group>
1558
01f13d4f
BP
1559 <group title="Spanning Tree Protocol">
1560 <p>
1561 The configuration here is only meaningful, and the status is only
1562 populated, when 802.1D-1998 Spanning Tree Protocol is enabled on the
1563 port's <ref column="Bridge"/> with its <ref column="stp_enable"/>
1564 column.
1565 </p>
21f7563c 1566
01f13d4f
BP
1567 <group title="STP Configuration">
1568 <column name="other_config" key="stp-enable"
1569 type='{"type": "boolean"}'>
1570 When STP is enabled on a bridge, it is enabled by default on all of
1571 the bridge's ports except bond, internal, and mirror ports (which do
1572 not work with STP). If this column's value is <code>false</code>,
1573 STP is disabled on the port.
1574 </column>
21f7563c 1575
01f13d4f
BP
1576 <column name="other_config" key="stp-port-num"
1577 type='{"type": "integer", "minInteger": 1, "maxInteger": 255}'>
1578 The port number used for the lower 8 bits of the port-id. By
1579 default, the numbers will be assigned automatically. If any
1580 port's number is manually configured on a bridge, then they
1581 must all be.
1582 </column>
21f7563c 1583
01f13d4f
BP
1584 <column name="other_config" key="stp-port-priority"
1585 type='{"type": "integer", "minInteger": 0, "maxInteger": 255}'>
1586 The port's relative priority value for determining the root
1587 port (the upper 8 bits of the port-id). A port with a lower
1588 port-id will be chosen as the root port. By default, the
1589 priority is 0x80.
1590 </column>
1591
1592 <column name="other_config" key="stp-path-cost"
1593 type='{"type": "integer", "minInteger": 0, "maxInteger": 65535}'>
1594 Spanning tree path cost for the port. A lower number indicates
1595 a faster link. By default, the cost is based on the maximum
1596 speed of the link.
1597 </column>
1598 </group>
1599
1600 <group title="STP Status">
1601 <column name="status" key="stp_port_id">
1602 The port ID used in spanning tree advertisements for this port, as 4
1603 hex digits. Configuring the port ID is described in the
1604 <code>stp-port-num</code> and <code>stp-port-priority</code> keys of
1605 the <code>other_config</code> section earlier.
1606 </column>
1607 <column name="status" key="stp_state"
1608 type='{"type": "string", "enum": ["set",
1609 ["disabled", "listening", "learning",
1610 "forwarding", "blocking"]]}'>
1611 STP state of the port.
1612 </column>
1613 <column name="status" key="stp_sec_in_state"
1614 type='{"type": "integer", "minInteger": 0}'>
1615 The amount of time this port has been in the current STP state, in
1616 seconds.
1617 </column>
1618 <column name="status" key="stp_role"
1619 type='{"type": "string", "enum": ["set",
1620 ["root", "designated", "alternate"]]}'>
1621 STP role of the port.
1622 </column>
1623 </group>
21f7563c 1624 </group>
d62d7cb1 1625
01f13d4f
BP
1626 <group title="Rapid Spanning Tree Protocol">
1627 <p>
1628 The configuration here is only meaningful, and the status and
1629 statistics are only populated, when 802.1D-1998 Spanning Tree Protocol
1630 is enabled on the port's <ref column="Bridge"/> with its <ref
1631 column="stp_enable"/> column.
1632 </p>
d62d7cb1 1633
01f13d4f
BP
1634 <group title="RSTP Configuration">
1635 <column name="other_config" key="rstp-enable"
1636 type='{"type": "boolean"}'>
1637 When RSTP is enabled on a bridge, it is enabled by default on all of
1638 the bridge's ports except bond, internal, and mirror ports (which do
1639 not work with RSTP). If this column's value is <code>false</code>,
1640 RSTP is disabled on the port.
1641 </column>
d62d7cb1 1642
01f13d4f
BP
1643 <column name="other_config" key="rstp-port-priority"
1644 type='{"type": "integer", "minInteger": 0, "maxInteger": 240}'>
1645 The port's relative priority value for determining the root port, in
1646 multiples of 16. By default, the port priority is 0x80 (128). Any
1647 value in the lower 4 bits is rounded off. The significant upper 4
1648 bits become the upper 4 bits of the port-id. A port with the lowest
1649 port-id is elected as the root.
1650 </column>
d62d7cb1 1651
01f13d4f
BP
1652 <column name="other_config" key="rstp-port-num"
1653 type='{"type": "integer", "minInteger": 1, "maxInteger": 4095}'>
1654 The local RSTP port number, used as the lower 12 bits of the port-id.
1655 By default the port numbers are assigned automatically, and typically
1656 may not correspond to the OpenFlow port numbers. A port with the
1657 lowest port-id is elected as the root.
1658 </column>
d62d7cb1 1659
01f13d4f
BP
1660 <column name="other_config" key="rstp-port-path-cost"
1661 type='{"type": "integer"}'>
1662 The port path cost. The Port's contribution, when it is
1663 the Root Port, to the Root Path Cost for the Bridge. By default the
1664 cost is automatically calculated from the port's speed.
1665 </column>
d62d7cb1 1666
01f13d4f
BP
1667 <column name="other_config" key="rstp-port-admin-edge"
1668 type='{"type": "boolean"}'>
1669 The admin edge port parameter for the Port. Default is
1670 <code>false</code>.
1671 </column>
d62d7cb1 1672
01f13d4f
BP
1673 <column name="other_config" key="rstp-port-auto-edge"
1674 type='{"type": "boolean"}'>
1675 The auto edge port parameter for the Port. Default is
d62d7cb1 1676 <code>true</code>.
01f13d4f
BP
1677 </column>
1678
1679 <column name="other_config" key="rstp-port-mcheck"
1680 type='{"type": "boolean"}'>
1681 <p>
1682 The mcheck port parameter for the Port. Default is
1683 <code>false</code>. May be set to force the Port Protocol
1684 Migration state machine to transmit RST BPDUs for a
1685 MigrateTime period, to test whether all STP Bridges on the
1686 attached LAN have been removed and the Port can continue to
1687 transmit RSTP BPDUs. Setting mcheck has no effect if the
1688 Bridge is operating in STP Compatibility mode.
1689 </p>
1690 <p>
1691 Changing the value from <code>true</code> to
1692 <code>false</code> has no effect, but needs to be done if
1693 this behavior is to be triggered again by subsequently
1694 changing the value from <code>false</code> to
1695 <code>true</code>.
1696 </p>
1697 </column>
1698 </group>
1699
1700 <group title="RSTP Status">
1701 <column name="rstp_status" key="rstp_port_id">
1702 The port ID used in spanning tree advertisements for this port, as 4
1703 hex digits. Configuring the port ID is described in the
1704 <code>rstp-port-num</code> and <code>rstp-port-priority</code> keys
1705 of the <code>other_config</code> section earlier.
1706 </column>
1707 <column name="rstp_status" key="rstp_port_role"
1708 type='{"type": "string", "enum": ["set",
1709 ["Root", "Designated", "Alternate", "Backup", "Disabled"]]}'>
1710 RSTP role of the port.
1711 </column>
1712 <column name="rstp_status" key="rstp_port_state"
1713 type='{"type": "string", "enum": ["set",
1714 ["Disabled", "Learning", "Forwarding", "Discarding"]]}'>
1715 RSTP state of the port.
1716 </column>
1717 <column name="rstp_status" key="rstp_designated_bridge_id">
1718 The port's RSTP designated bridge ID, in the same form as <ref
1719 column="rstp_status" key="rstp_bridge_id"/> in the <ref
1720 table="Bridge"/> table.
1721 </column>
1722 <column name="rstp_status" key="rstp_designated_port_id">
1723 The port's RSTP designated port ID, as 4 hex digits.
1724 </column>
1725 <column name="rstp_status" key="rstp_designated_path_cost"
1726 type='{"type": "integer"}'>
1727 The port's RSTP designated path cost. Lower is better.
1728 </column>
1729 </group>
1730
1731 <group title="RSTP Statistics">
1732 <column name="rstp_statistics" key="rstp_tx_count">
1733 Number of RSTP BPDUs transmitted through this port.
1734 </column>
1735 <column name="rstp_statistics" key="rstp_rx_count">
1736 Number of valid RSTP BPDUs received by this port.
1737 </column>
1738 <column name="rstp_statistics" key="rstp_error_count">
1739 Number of invalid RSTP BPDUs received by this port.
1740 </column>
1741 <column name="rstp_statistics" key="rstp_uptime">
1742 The duration covered by the other RSTP statistics, in seconds.
1743 </column>
1744 </group>
d62d7cb1
JR
1745 </group>
1746
dc2b70ba
FL
1747 <group title="Multicast Snooping">
1748 <column name="other_config" key="mcast-snooping-flood"
1749 type='{"type": "boolean"}'>
1750 <p>
8e04a33f
FL
1751 If set to <code>true</code>, multicast packets (except Reports) are
1752 unconditionally forwarded to the specific port.
1753 </p>
1754 </column>
1755 <column name="other_config" key="mcast-snooping-flood-reports"
1756 type='{"type": "boolean"}'>
1757 <p>
1758 If set to <code>true</code>, multicast Reports are unconditionally
dc2b70ba
FL
1759 forwarded to the specific port.
1760 </p>
1761 </column>
1762 </group>
21f7563c 1763
89365653 1764 <group title="Other Features">
c1c9c9c4
BP
1765 <column name="qos">
1766 Quality of Service configuration for this port.
1767 </column>
299a244b 1768
89365653
BP
1769 <column name="mac">
1770 The MAC address to use for this port for the purpose of choosing the
1771 bridge's MAC address. This column does not necessarily reflect the
1772 port's actual MAC address, nor will setting it change the port's actual
1773 MAC address.
1774 </column>
1775
1776 <column name="fake_bridge">
1777 Does this port represent a sub-bridge for its tagged VLAN within the
1778 Bridge? See ovs-vsctl(8) for more information.
1779 </column>
1780
3fd8d445
BP
1781 <column name="external_ids" key="fake-bridge-id-*">
1782 External IDs for a fake bridge (see the <ref column="fake_bridge"/>
1783 column) are defined by prefixing a <ref table="Bridge"/> <ref
1784 table="Bridge" column="external_ids"/> key with
1785 <code>fake-bridge-</code>,
1786 e.g. <code>fake-bridge-xs-network-uuids</code>.
89365653 1787 </column>
54b21db7
TLSC
1788
1789 <column name="other_config" key="transient"
1790 type='{"type": "boolean"}'>
1791 <p>
1792 If set to <code>true</code>, the port will be removed when
1793 <code>ovs-ctl start --delete-transient-ports</code> is used.
1794 </p>
1795 </column>
3fd8d445 1796 </group>
89365653 1797
01f13d4f
BP
1798 <column name="bond_active_slave">
1799 For a bonded port, record the mac address of the current active slave.
1800 </column>
21f7563c 1801
80740385
JP
1802 <group title="Port Statistics">
1803 <p>
12eb035b
AW
1804 Key-value pairs that report port statistics. The update period
1805 is controlled by <ref column="other_config"
1806 key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
80740385
JP
1807 </p>
1808 <group title="Statistics: STP transmit and receive counters">
1809 <column name="statistics" key="stp_tx_count">
1810 Number of STP BPDUs sent on this port by the spanning
1811 tree library.
1812 </column>
1813 <column name="statistics" key="stp_rx_count">
1814 Number of STP BPDUs received on this port and accepted by the
1815 spanning tree library.
1816 </column>
1817 <column name="statistics" key="stp_error_count">
1818 Number of bad STP BPDUs received on this port. Bad BPDUs
1819 include runt packets and those with an unexpected protocol ID.
1820 </column>
1821 </group>
1822 </group>
1823
3fd8d445
BP
1824 <group title="Common Columns">
1825 The overall purpose of these columns is described under <code>Common
1826 Columns</code> at the beginning of this document.
1827
1828 <column name="other_config"/>
1829 <column name="external_ids"/>
89365653
BP
1830 </group>
1831 </table>
1832
1833 <table name="Interface" title="One physical network device in a Port.">
1834 An interface within a <ref table="Port"/>.
1835
1836 <group title="Core Features">
1837 <column name="name">
c885f934
BP
1838 <p>
1839 Interface name. Should be alphanumeric. For non-bonded port, this
1840 should be the same as the port name. It must otherwise be unique
1841 among the names of ports, interfaces, and bridges on a host.
1842 </p>
1843
1844 <p>
1845 The maximum length of an interface name depends on the underlying
1846 datapath:
1847 </p>
1848
1849 <ul>
1850 <li>
1851 The names of interfaces implemented as Linux and BSD network
1852 devices, including interfaces with type <code>internal</code>,
59a0ef1d
JG
1853 <code>tap</code>, or <code>system</code> plus the different types
1854 of tunnel ports, are limited to 15 bytes. Windows limits these
1855 names to 255 bytes.
c885f934
BP
1856 </li>
1857
1858 <li>
59a0ef1d
JG
1859 The names of patch ports are not used in the underlying datapath,
1860 so operating system restrictions do not apply. Thus, they may have
1861 arbitrary length.
c885f934
BP
1862 </li>
1863 </ul>
1864
1865 <p>
1866 Regardless of other restrictions, OpenFlow only supports 15-byte
1867 names, which means that <code>ovs-ofctl</code> and OpenFlow
1868 controllers will show names truncated to 15 bytes.
1869 </p>
89365653
BP
1870 </column>
1871
ea401d9a
NM
1872 <column name="ifindex">
1873 A positive interface index as defined for SNMP MIB-II in RFCs 1213 and
1874 2863, if the interface has one, otherwise 0. The ifindex is useful for
1875 seamless integration with protocols such as SNMP and sFlow.
1876 </column>
1877
df867eda
JP
1878 <column name="mac_in_use">
1879 The MAC address in use by this interface.
1880 </column>
1881
89365653
BP
1882 <column name="mac">
1883 <p>Ethernet address to set for this interface. If unset then the
3fd8d445 1884 default MAC address is used:</p>
89365653
BP
1885 <ul>
1886 <li>For the local interface, the default is the lowest-numbered MAC
3fd8d445
BP
1887 address among the other bridge ports, either the value of the
1888 <ref table="Port" column="mac"/> in its <ref table="Port"/> record,
1889 if set, or its actual MAC (for bonded ports, the MAC of its slave
1890 whose name is first in alphabetical order). Internal ports and
1891 bridge ports that are used as port mirroring destinations (see the
1892 <ref table="Mirror"/> table) are ignored.</li>
2e57b537 1893 <li>For other internal interfaces, the default MAC is randomly
3fd8d445 1894 generated.</li>
89365653 1895 <li>External interfaces typically have a MAC address associated with
3fd8d445 1896 their hardware.</li>
89365653
BP
1897 </ul>
1898 <p>Some interfaces may not have a software-controllable MAC
1899 address.</p>
1900 </column>
1901
bbe6109d
TG
1902 <column name="error">
1903 If the configuration of the port failed, as indicated by -1 in <ref
1904 column="ofport"/>, Open vSwitch sets this column to an error
1905 description in human readable form. Otherwise, Open vSwitch clears
1906 this column.
1907 </column>
1908
484c8355 1909 <group title="OpenFlow Port Number">
039a8ccd
BP
1910 <p>
1911 When a client adds a new interface, Open vSwitch chooses an OpenFlow
1912 port number for the new port. If the client that adds the port fills
1913 in <ref column="ofport_request"/>, then Open vSwitch tries to use its
1914 value as the OpenFlow port number. Otherwise, or if the requested
1915 port number is already in use or cannot be used for another reason,
1916 Open vSwitch automatically assigns a free port number. Regardless of
1917 how the port number was obtained, Open vSwitch then reports in <ref
1918 column="ofport"/> the port number actually assigned.
1919 </p>
1920
1921 <p>
1922 Open vSwitch limits the port numbers that it automatically assigns to
1923 the range 1 through 32,767, inclusive. Controllers therefore have
1924 free use of ports 32,768 and up.
1925 </p>
1926
1927 <column name="ofport">
1928 <p>
1929 OpenFlow port number for this interface. Open vSwitch sets this
1930 column's value, so other clients should treat it as read-only.
1931 </p>
1932 <p>
1933 The OpenFlow ``local'' port (<code>OFPP_LOCAL</code>) is 65,534.
1934 The other valid port numbers are in the range 1 to 65,279,
1935 inclusive. Value -1 indicates an error adding the interface.
1936 </p>
1937 </column>
1938
1939 <column name="ofport_request"
1940 type='{"type": "integer", "minInteger": 1, "maxInteger": 65279}'>
1941 <p>
1942 Requested OpenFlow port number for this interface.
1943 </p>
1944
1945 <p>
1946 A client should ideally set this column's value in the same
1947 database transaction that it uses to create the interface. Open
1948 vSwitch version 2.1 and later will honor a later request for a
1949 specific port number, althuogh it might confuse some controllers:
1950 OpenFlow does not have a way to announce a port number change, so
1951 Open vSwitch represents it over OpenFlow as a port deletion
1952 followed immediately by a port addition.
1953 </p>
1954
1955 <p>
1956 If <ref column="ofport_request"/> is set or changed to some other
1957 port's automatically assigned port number, Open vSwitch chooses a
1958 new port number for the latter port.
1959 </p>
1960 </column>
484c8355 1961 </group>
89365653
BP
1962 </group>
1963
1964 <group title="System-Specific Details">
1965 <column name="type">
3fd8d445 1966 <p>
842733c3
MG
1967 The interface type. The types supported by a particular instance of
1968 Open vSwitch are listed in the <ref table="Open_vSwitch"
1969 column="iface_types"/> column in the <ref table="Open_vSwitch"/>
1970 table. The following types are defined:
3fd8d445
BP
1971 </p>
1972
89365653
BP
1973 <dl>
1974 <dt><code>system</code></dt>
1975 <dd>An ordinary network device, e.g. <code>eth0</code> on Linux.
3fd8d445
BP
1976 Sometimes referred to as ``external interfaces'' since they are
1977 generally connected to hardware external to that on which the Open
1978 vSwitch is running. The empty string is a synonym for
1979 <code>system</code>.</dd>
1980
89365653 1981 <dt><code>internal</code></dt>
2e57b537 1982 <dd>A simulated network device that sends and receives traffic. An
3fd8d445
BP
1983 internal interface whose <ref column="name"/> is the same as its
1984 bridge's <ref table="Open_vSwitch" column="name"/> is called the
1985 ``local interface.'' It does not make sense to bond an internal
1986 interface, so the terms ``port'' and ``interface'' are often used
1987 imprecisely for internal interfaces.</dd>
1988
89365653
BP
1989 <dt><code>tap</code></dt>
1990 <dd>A TUN/TAP device managed by Open vSwitch.</dd>
3fd8d445 1991
c1fc1411
JG
1992 <dt><code>geneve</code></dt>
1993 <dd>
59a0ef1d 1994 An Ethernet over Geneve (<code>http://tools.ietf.org/html/draft-ietf-nvo3-geneve</code>)
80c4589a 1995 IPv4/IPv6 tunnel.
c1fc1411 1996
9558d2a5
JG
1997 A description of how to match and set Geneve options can be found
1998 in the <code>ovs-ofctl</code> manual page.
c1fc1411
JG
1999 </dd>
2000
89365653 2001 <dt><code>gre</code></dt>
3fd8d445 2002 <dd>
80c4589a 2003 An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4/IPv6
79f827fa 2004 tunnel.
e16a28b5 2005 </dd>
3fd8d445 2006
e16a28b5 2007 <dt><code>ipsec_gre</code></dt>
3fd8d445 2008 <dd>
80c4589a 2009 An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4/IPv6
9cc6bf75 2010 IPsec tunnel.
a28716da 2011 </dd>
3fd8d445 2012
79f827fa
KM
2013 <dt><code>vxlan</code></dt>
2014 <dd>
039a8ccd
BP
2015 <p>
2016 An Ethernet tunnel over the UDP-based VXLAN protocol described in
2017 RFC 7348.
2018 </p>
2019 <p>
59a0ef1d
JG
2020 Open vSwitch uses IANA-assigned UDP destination port 4789. The
2021 source port used for VXLAN traffic varies on a per-flow basis
2022 and is in the ephemeral port range.
039a8ccd 2023 </p>
79f827fa
KM
2024 </dd>
2025
a6ae068b
LJ
2026 <dt><code>lisp</code></dt>
2027 <dd>
a6363cfd
LJ
2028 <p>
2029 A layer 3 tunnel over the experimental, UDP-based Locator/ID
2030 Separation Protocol (RFC 6830).
2031 </p>
2032 <p>
2033 Only IPv4 and IPv6 packets are supported by the protocol, and
2034 they are sent and received without an Ethernet header. Traffic
2035 to/from LISP ports is expected to be configured explicitly, and
2036 the ports are not intended to participate in learning based
2037 switching. As such, they are always excluded from packet
2038 flooding.
2039 </p>
a6ae068b
LJ
2040 </dd>
2041
4237026e
PS
2042 <dt><code>stt</code></dt>
2043 <dd>
039a8ccd
BP
2044 The Stateless TCP Tunnel (STT) is particularly useful when tunnel
2045 endpoints are in end-systems, as it utilizes the capabilities of
2046 standard network interface cards to improve performance. STT utilizes
2047 a TCP-like header inside the IP header. It is stateless, i.e., there is
2048 no TCP connection state of any kind associated with the tunnel. The
2049 TCP-like header is used to leverage the capabilities of existing
2050 network interface cards, but should not be interpreted as implying
2051 any sort of connection state between endpoints.
2052 Since the STT protocol does not engage in the usual TCP 3-way handshake,
2053 so it will have difficulty traversing stateful firewalls.
2054 The protocol is documented at
59a0ef1d 2055 https://tools.ietf.org/html/draft-davie-stt
039a8ccd 2056
59a0ef1d 2057 All traffic uses a default destination port of 7471.
4237026e
PS
2058 </dd>
2059
8aed4223 2060 <dt><code>patch</code></dt>
eca2df31 2061 <dd>
3fd8d445 2062 A pair of virtual devices that act as a patch cable.
eca2df31 2063 </dd>
3fd8d445 2064
84b32864 2065 <dt><code>null</code></dt>
0faed346 2066 <dd>An ignored interface. Deprecated and slated for removal in
039a8ccd 2067 February 2013.</dd>
89365653
BP
2068 </dl>
2069 </column>
3fd8d445
BP
2070 </group>
2071
2072 <group title="Tunnel Options">
2073 <p>
2074 These options apply to interfaces with <ref column="type"/> of
c1fc1411 2075 <code>geneve</code>, <code>gre</code>, <code>ipsec_gre</code>,
99e7b077 2076 <code>vxlan</code>, <code>lisp</code> and <code>stt</code>.
3fd8d445
BP
2077 </p>
2078
2079 <p>
2080 Each tunnel must be uniquely identified by the combination of <ref
2081 column="type"/>, <ref column="options" key="remote_ip"/>, <ref
2082 column="options" key="local_ip"/>, and <ref column="options"
2083 key="in_key"/>. If two ports are defined that are the same except one
2084 has an optional identifier and the other does not, the more specific
2085 one is matched first. <ref column="options" key="in_key"/> is
2086 considered more specific than <ref column="options" key="local_ip"/> if
2087 a port defines one and another port defines the other.
2088 </p>
2089
2090 <column name="options" key="remote_ip">
0ad90c84
JR
2091 <p>Required. The remote tunnel endpoint, one of:</p>
2092
2093 <ul>
2094 <li>
80c4589a 2095 An IPv4 or IPv6 address (not a DNS name), e.g. <code>192.168.0.123</code>.
0ad90c84
JR
2096 Only unicast endpoints are supported.
2097 </li>
2098 <li>
2099 The word <code>flow</code>. The tunnel accepts packets from any
2100 remote tunnel endpoint. To process only packets from a specific
2101 remote tunnel endpoint, the flow entries may match on the
80c4589a
PS
2102 <code>tun_src</code> or <code>tun_ipv6_src</code>field. When
2103 sending packets to a <code>remote_ip=flow</code> tunnel, the flow
2104 actions must explicitly set the <code>tun_dst</code> or
2105 <code>tun_ipv6_dst</code> field to the IP address of the desired
2106 remote tunnel endpoint, e.g. with a <code>set_field</code> action.
0ad90c84
JR
2107 </li>
2108 </ul>
2109
2110 <p>
039a8ccd
BP
2111 The remote tunnel endpoint for any packet received from a tunnel
2112 is available in the <code>tun_src</code> field for matching in the
2113 flow table.
0ad90c84 2114 </p>
3fd8d445
BP
2115 </column>
2116
2117 <column name="options" key="local_ip">
0ad90c84
JR
2118 <p>
2119 Optional. The tunnel destination IP that received packets must
2120 match. Default is to match all addresses. If specified, may be one
2121 of:
2122 </p>
2123
2124 <ul>
2125 <li>
80c4589a 2126 An IPv4/IPv6 address (not a DNS name), e.g. <code>192.168.12.3</code>.
0ad90c84
JR
2127 </li>
2128 <li>
2129 The word <code>flow</code>. The tunnel accepts packets sent to any
2130 of the local IP addresses of the system running OVS. To process
2131 only packets sent to a specific IP address, the flow entries may
80c4589a
PS
2132 match on the <code>tun_dst</code> or <code>tun_ipv6_dst</code> field.
2133 When sending packets to a <code>local_ip=flow</code> tunnel, the flow
2134 actions may explicitly set the <code>tun_src</code> or <code>tun_ipv6_src</code>
2135 field to the desired IP address, e.g. with a <code>set_field</code> action.
2136 However, while routing the tunneled packet out, the local system may
2137 override the specified address with the local IP address configured for the
0ad90c84
JR
2138 outgoing system interface.
2139
2140 <p>
2141 This option is valid only for tunnels also configured with the
2142 <code>remote_ip=flow</code> option.
2143 </p>
2144 </li>
2145 </ul>
2146
2147 <p>
2148 The tunnel destination IP address for any packet received from a
80c4589a
PS
2149 tunnel is available in the <code>tun_dst</code> or <code>tun_ipv6_dst</code>
2150 field for matching in the flow table.
0ad90c84 2151 </p>
3fd8d445
BP
2152 </column>
2153
2154 <column name="options" key="in_key">
2155 <p>Optional. The key that received packets must contain, one of:</p>
2156
2157 <ul>
2158 <li>
2159 <code>0</code>. The tunnel receives packets with no key or with a
2160 key of 0. This is equivalent to specifying no <ref column="options"
2161 key="in_key"/> at all.
2162 </li>
2163 <li>
271e6bc7 2164 A positive 24-bit (for Geneve, VXLAN, and LISP), 32-bit (for GRE)
99e7b077 2165 or 64-bit (for STT) number. The tunnel receives only
4237026e 2166 packets with the specified key.
3fd8d445
BP
2167 </li>
2168 <li>
2169 The word <code>flow</code>. The tunnel accepts packets with any
2170 key. The key will be placed in the <code>tun_id</code> field for
2171 matching in the flow table. The <code>ovs-ofctl</code> manual page
2172 contains additional information about matching fields in OpenFlow
2173 flows.
2174 </li>
2175 </ul>
2176
2177 <p>
2178 </p>
2179 </column>
2180
2181 <column name="options" key="out_key">
2182 <p>Optional. The key to be set on outgoing packets, one of:</p>
2183
2184 <ul>
2185 <li>
2186 <code>0</code>. Packets sent through the tunnel will have no key.
2187 This is equivalent to specifying no <ref column="options"
2188 key="out_key"/> at all.
2189 </li>
2190 <li>
271e6bc7 2191 A positive 24-bit (for Geneve, VXLAN and LISP), 32-bit (for GRE) or
99e7b077 2192 64-bit (for STT) number. Packets sent through the tunnel
4237026e 2193 will have the specified key.
3fd8d445
BP
2194 </li>
2195 <li>
2196 The word <code>flow</code>. Packets sent through the tunnel will
2197 have the key set using the <code>set_tunnel</code> Nicira OpenFlow
2198 vendor extension (0 is used in the absence of an action). The
2199 <code>ovs-ofctl</code> manual page contains additional information
2200 about the Nicira OpenFlow vendor extensions.
2201 </li>
2202 </ul>
2203 </column>
2204
2205 <column name="options" key="key">
2206 Optional. Shorthand to set <code>in_key</code> and
2207 <code>out_key</code> at the same time.
2208 </column>
2209
2210 <column name="options" key="tos">
2211 Optional. The value of the ToS bits to be set on the encapsulating
749ae950
PS
2212 packet. ToS is interpreted as DSCP and ECN bits, ECN part must be
2213 zero. It may also be the word <code>inherit</code>, in which case
3fd8d445
BP
2214 the ToS will be copied from the inner packet if it is IPv4 or IPv6
2215 (otherwise it will be 0). The ECN fields are always inherited.
2216 Default is 0.
2217 </column>
2218
2219 <column name="options" key="ttl">
2220 Optional. The TTL to be set on the encapsulating packet. It may also
2221 be the word <code>inherit</code>, in which case the TTL will be copied
2222 from the inner packet if it is IPv4 or IPv6 (otherwise it will be the
2223 system default, typically 64). Default is the system default TTL.
2224 </column>
9cc6bf75 2225
f9e5e5b3
BP
2226 <column name="options" key="df_default"
2227 type='{"type": "boolean"}'>
9b9f4d60
EJ
2228 Optional. If enabled, the Don't Fragment bit will be set on tunnel
2229 outer headers to allow path MTU discovery. Default is enabled; set
2230 to <code>false</code> to disable.
3fd8d445
BP
2231 </column>
2232
526df7d8
TG
2233 <group title="Tunnel Options: vxlan only">
2234
039a8ccd
BP
2235 <column name="options" key="exts">
2236 <p>Optional. Comma separated list of optional VXLAN extensions to
2237 enable. The following extensions are supported:</p>
526df7d8 2238
039a8ccd
BP
2239 <ul>
2240 <li>
2241 <code>gbp</code>: VXLAN-GBP allows to transport the group policy
2242 context of a packet across the VXLAN tunnel to other network
2243 peers. See the field description of <code>tun_gbp_id</code> and
2244 <code>tun_gbp_flags</code> in ovs-ofctl(8) for additional
2245 information.
2246 (<code>https://tools.ietf.org/html/draft-smith-vxlan-group-policy</code>)
2247 </li>
2248 </ul>
2249 </column>
526df7d8 2250
039a8ccd 2251 </group>
526df7d8 2252
4752cc0c 2253 <group title="Tunnel Options: gre, ipsec_gre, geneve, and vxlan">
3fd8d445 2254 <p>
4752cc0c
JG
2255 <code>gre</code>, <code>ipsec_gre</code>, <code>geneve</code>, and
2256 <code>vxlan</code> interfaces support these options.
3fd8d445
BP
2257 </p>
2258
f9e5e5b3 2259 <column name="options" key="csum" type='{"type": "boolean"}'>
3fd8d445 2260 <p>
4752cc0c
JG
2261 Optional. Compute encapsulation header (either GRE or UDP)
2262 checksums on outgoing packets. Default is disabled, set to
2263 <code>true</code> to enable. Checksums present on incoming
2264 packets will be validated regardless of this setting.
039a8ccd 2265 </p>
3fd8d445 2266
4752cc0c
JG
2267 <p>
2268 When using the upstream Linux kernel module, computation of
2269 checksums for <code>geneve</code> and <code>vxlan</code> requires
2270 Linux kernel version 4.0 or higher. <code>gre</code> supports
2271 checksums for all versions of Open vSwitch that support GRE.
2272 The out of tree kernel module distributed as part of OVS
2273 can compute all tunnel checksums on any kernel version that it
2274 is compatible with.
3fd8d445
BP
2275 </p>
2276
2277 <p>
039a8ccd
BP
2278 This option is supported for <code>ipsec_gre</code>, but not useful
2279 because GRE checksums are weaker than, and redundant with, IPsec
2280 payload authentication.
3fd8d445
BP
2281 </p>
2282 </column>
2283 </group>
2284
2285 <group title="Tunnel Options: ipsec_gre only">
2286 <p>
2287 Only <code>ipsec_gre</code> interfaces support these options.
2288 </p>
2289
2290 <column name="options" key="peer_cert">
2291 Required for certificate authentication. A string containing the
2292 peer's certificate in PEM format. Additionally the host's
2293 certificate must be specified with the <code>certificate</code>
2294 option.
2295 </column>
2296
2297 <column name="options" key="certificate">
2298 Required for certificate authentication. The name of a PEM file
2299 containing a certificate that will be presented to the peer during
2300 authentication.
2301 </column>
2302
2303 <column name="options" key="private_key">
2304 Optional for certificate authentication. The name of a PEM file
2305 containing the private key associated with <code>certificate</code>.
2306 If <code>certificate</code> contains the private key, this option may
2307 be omitted.
2308 </column>
2309
2310 <column name="options" key="psk">
2311 Required for pre-shared key authentication. Specifies a pre-shared
2312 key for authentication that must be identical on both sides of the
2313 tunnel.
2314 </column>
2315 </group>
2316 </group>
2317
2318 <group title="Patch Options">
2319 <p>
2320 Only <code>patch</code> interfaces support these options.
2321 </p>
89365653 2322
3fd8d445
BP
2323 <column name="options" key="peer">
2324 The <ref column="name"/> of the <ref table="Interface"/> for the other
2325 side of the patch. The named <ref table="Interface"/>'s own
2326 <code>peer</code> option must specify this <ref table="Interface"/>'s
2327 name. That is, the two patch interfaces must have reversed <ref
2328 column="name"/> and <code>peer</code> values.
89365653 2329 </column>
e210037e
AE
2330 </group>
2331
a14b8947
IM
2332 <group title="PMD (Poll Mode Driver) Options">
2333 <p>
2334 Only PMD netdevs support these options.
2335 </p>
2336
81acebda 2337 <column name="options" key="n_rxq"
a14b8947
IM
2338 type='{"type": "integer", "minInteger": 1}'>
2339 <p>
2340 Specifies the maximum number of rx queues to be created for PMD
2341 netdev. If not specified or specified to 0, one rx queue will
2342 be created by default.
81acebda 2343 Not supported by DPDK vHost interfaces.
a14b8947
IM
2344 </p>
2345 </column>
3eb67853
IM
2346
2347 <column name="other_config" key="pmd-rxq-affinity">
2348 <p>Specifies mapping of RX queues of this interface to CPU cores.</p>
2349 <p>Value should be set in the following form:</p>
2350 <p>
2351 <code>other_config:pmd-rxq-affinity=&lt;rxq-affinity-list&gt;</code>
2352 </p>
2353 <p>where</p>
2354 <p>
2355 <ul>
2356 <li>
2357 &lt;rxq-affinity-list&gt; ::= NULL | &lt;non-empty-list&gt;
2358 </li>
2359 <li>
2360 &lt;non-empty-list&gt; ::= &lt;affinity-pair&gt; |
2361 &lt;affinity-pair&gt; , &lt;non-empty-list&gt;
2362 </li>
2363 <li>
2364 &lt;affinity-pair&gt; ::= &lt;queue-id&gt; : &lt;core-id&gt;
2365 </li>
2366 </ul>
2367 </p>
2368 </column>
a14b8947
IM
2369 </group>
2370
56abcf49
DDP
2371 <group title="MTU">
2372 <p>
2373 The MTU (maximum transmission unit) is the largest amount of data
2374 that can fit into a single Ethernet frame. The standard Ethernet
2375 MTU is 1500 bytes. Some physical media and many kinds of virtual
2376 interfaces can be configured with higher MTUs.
2377 </p>
2378
2379 <p>
2380 A client may change a non-internal interface MTU by filling in
2381 <ref column="mtu_request"/>. Internal interfaces MTU, instead, is set
2382 by Open vSwitch to the minimum of non-internal interfaces MTU in the
2383 bridge. In any case, Open vSwitch then reports in <ref column="mtu"/>
2384 the currently configured value.
2385 </p>
2386
2387 <column name="mtu">
2388 <p>
2389 This column will be empty for an interface that does not
2390 have an MTU as, for example, some kinds of tunnels do not.
2391 </p>
2392
2393 <p>
2394 Open vSwitch sets this column's value, so other clients should treat
2395 it as read-only.
2396 </p>
2397 </column>
2398
2399 <column name="mtu_request"
2400 type='{"type": "integer", "minInteger": 1}'>
2401 <p>
2402 Requested MTU (Maximum Transmission Unit) for the interface. A client
2403 can fill this column to change the MTU of a non-internal interface.
2404 </p>
2405 </column>
2406
2407 </group>
2408
e210037e
AE
2409 <group title="Interface Status">
2410 <p>
2411 Status information about interfaces attached to bridges, updated every
2412 5 seconds. Not all interfaces have all of these properties; virtual
2413 interfaces don't have a link speed, for example. Non-applicable
2414 columns will have empty values.
2415 </p>
2416 <column name="admin_state">
2417 <p>
2418 The administrative state of the physical network link.
2419 </p>
2420 </column>
2421
2422 <column name="link_state">
2423 <p>
0b8024eb
BP
2424 The observed state of the physical network link. This is ordinarily
2425 the link's carrier status. If the interface's <ref table="Port"/> is
2426 a bond configured for miimon monitoring, it is instead the network
2427 link's miimon status.
e210037e
AE
2428 </p>
2429 </column>
2430
65c3058c
EJ
2431 <column name="link_resets">
2432 <p>
2433 The number of times Open vSwitch has observed the
2434 <ref column="link_state"/> of this <ref table="Interface"/> change.
2435 </p>
2436 </column>
2437
e210037e
AE
2438 <column name="link_speed">
2439 <p>
2440 The negotiated speed of the physical network link.
2441 Valid values are positive integers greater than 0.
2442 </p>
2443 </column>
2444
2445 <column name="duplex">
2446 <p>
2447 The duplex mode of the physical network link.
2448 </p>
2449 </column>
2450
3fd8d445
BP
2451 <column name="lacp_current">
2452 Boolean value indicating LACP status for this interface. If true, this
2453 interface has current LACP information about its LACP partner. This
2454 information may be used to monitor the health of interfaces in a LACP
2455 enabled port. This column will be empty if LACP is not enabled.
2456 </column>
2457
573c1db9 2458 <column name="status">
3fd8d445
BP
2459 Key-value pairs that report port status. Supported status values are
2460 <ref column="type"/>-dependent; some interfaces may not have a valid
2461 <ref column="status" key="driver_name"/>, for example.
2462 </column>
2463
2464 <column name="status" key="driver_name">
2465 The name of the device driver controlling the network adapter.
2466 </column>
2467
2468 <column name="status" key="driver_version">
2469 The version string of the device driver controlling the network
2470 adapter.
2471 </column>
2472
2473 <column name="status" key="firmware_version">
2474 The version string of the network adapter's firmware, if available.
2475 </column>
2476
2477 <column name="status" key="source_ip">
80c4589a 2478 The source IP address used for an IPv4/IPv6 tunnel end-point, such as
09538fdc 2479 <code>gre</code>.
573c1db9 2480 </column>
3fd8d445
BP
2481
2482 <column name="status" key="tunnel_egress_iface">
271e6bc7
JG
2483 Egress interface for tunnels. Currently only relevant for tunnels
2484 on Linux systems, this column will show the name of the interface
09538fdc
PS
2485 which is responsible for routing traffic destined for the configured
2486 <ref column="options" key="remote_ip"/>. This could be an internal
2487 interface such as a bridge port.
3fd8d445
BP
2488 </column>
2489
f9e5e5b3
BP
2490 <column name="status" key="tunnel_egress_iface_carrier"
2491 type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
2492 Whether carrier is detected on <ref column="status"
2493 key="tunnel_egress_iface"/>.
3fd8d445
BP
2494 </column>
2495 </group>
2496
2497 <group title="Statistics">
2498 <p>
2499 Key-value pairs that report interface statistics. The current
12eb035b
AW
2500 implementation updates these counters periodically. The update period
2501 is controlled by <ref column="other_config"
2502 key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
2503 Future implementations may update them when an interface is created,
2504 when they are queried (e.g. using an OVSDB <code>select</code>
2505 operation), and just before an interface is deleted due to virtual
2506 interface hot-unplug or VM shutdown, and perhaps at other times, but
2507 not on any regular periodic basis.
3fd8d445
BP
2508 </p>
2509 <p>
2510 These are the same statistics reported by OpenFlow in its <code>struct
2511 ofp_port_stats</code> structure. If an interface does not support a
2512 given statistic, then that pair is omitted.
2513 </p>
2514 <group title="Statistics: Successful transmit and receive counters">
2515 <column name="statistics" key="rx_packets">
2516 Number of received packets.
2517 </column>
2518 <column name="statistics" key="rx_bytes">
2519 Number of received bytes.
2520 </column>
2521 <column name="statistics" key="tx_packets">
2522 Number of transmitted packets.
2523 </column>
2524 <column name="statistics" key="tx_bytes">
2525 Number of transmitted bytes.
2526 </column>
2527 </group>
2528 <group title="Statistics: Receive errors">
2529 <column name="statistics" key="rx_dropped">
2530 Number of packets dropped by RX.
2531 </column>
2532 <column name="statistics" key="rx_frame_err">
2533 Number of frame alignment errors.
2534 </column>
2535 <column name="statistics" key="rx_over_err">
2536 Number of packets with RX overrun.
2537 </column>
2538 <column name="statistics" key="rx_crc_err">
2539 Number of CRC errors.
2540 </column>
2541 <column name="statistics" key="rx_errors">
2542 Total number of receive errors, greater than or equal to the sum of
2543 the above.
2544 </column>
9cc6bf75 2545 </group>
3fd8d445
BP
2546 <group title="Statistics: Transmit errors">
2547 <column name="statistics" key="tx_dropped">
2548 Number of packets dropped by TX.
2549 </column>
2550 <column name="statistics" key="collisions">
2551 Number of collisions.
2552 </column>
2553 <column name="statistics" key="tx_errors">
2554 Total number of transmit errors, greater than or equal to the sum of
2555 the above.
2556 </column>
2557 </group>
89365653
BP
2558 </group>
2559
2560 <group title="Ingress Policing">
3f5d8c02
BP
2561 <p>
2562 These settings control ingress policing for packets received on this
2563 interface. On a physical interface, this limits the rate at which
2564 traffic is allowed into the system from the outside; on a virtual
2565 interface (one connected to a virtual machine), this limits the rate at
2566 which the VM is able to transmit.
2567 </p>
2568 <p>
2569 Policing is a simple form of quality-of-service that simply drops
2570 packets received in excess of the configured rate. Due to its
2571 simplicity, policing is usually less accurate and less effective than
2572 egress QoS (which is configured using the <ref table="QoS"/> and <ref
2573 table="Queue"/> tables).
2574 </p>
2575 <p>
9509913a
IS
2576 Policing is currently implemented on Linux and OVS with DPDK. Both
2577 implementations use a simple ``token bucket'' approach:
3f5d8c02
BP
2578 </p>
2579 <ul>
2580 <li>
2581 The size of the bucket corresponds to <ref
2582 column="ingress_policing_burst"/>. Initially the bucket is full.
2583 </li>
2584 <li>
2585 Whenever a packet is received, its size (converted to tokens) is
2586 compared to the number of tokens currently in the bucket. If the
2587 required number of tokens are available, they are removed and the
2588 packet is forwarded. Otherwise, the packet is dropped.
2589 </li>
2590 <li>
2591 Whenever it is not full, the bucket is refilled with tokens at the
2592 rate specified by <ref column="ingress_policing_rate"/>.
2593 </li>
2594 </ul>
2595 <p>
2596 Policing interacts badly with some network protocols, and especially
2597 with fragmented IP packets. Suppose that there is enough network
2598 activity to keep the bucket nearly empty all the time. Then this token
2599 bucket algorithm will forward a single packet every so often, with the
2600 period depending on packet size and on the configured rate. All of the
2601 fragments of an IP packets are normally transmitted back-to-back, as a
2602 group. In such a situation, therefore, only one of these fragments
2603 will be forwarded and the rest will be dropped. IP does not provide
2604 any way for the intended recipient to ask for only the remaining
2605 fragments. In such a case there are two likely possibilities for what
2606 will happen next: either all of the fragments will eventually be
2607 retransmitted (as TCP will do), in which case the same problem will
2608 recur, or the sender will not realize that its packet has been dropped
2609 and data will simply be lost (as some UDP-based protocols will do).
2610 Either way, it is possible that no forward progress will ever occur.
2611 </p>
2612 <column name="ingress_policing_rate">
2613 <p>
2614 Maximum rate for data received on this interface, in kbps. Data
2615 received faster than this rate is dropped. Set to <code>0</code>
2616 (the default) to disable policing.
2617 </p>
2618 </column>
2619
89365653
BP
2620 <column name="ingress_policing_burst">
2621 <p>Maximum burst size for data received on this interface, in kb. The
79abacc8 2622 default burst size if set to <code>0</code> is 8000 kbit. This value
3fd8d445
BP
2623 has no effect if <ref column="ingress_policing_rate"/>
2624 is <code>0</code>.</p>
3f5d8c02
BP
2625 <p>
2626 Specifying a larger burst size lets the algorithm be more forgiving,
2627 which is important for protocols like TCP that react severely to
2628 dropped packets. The burst size should be at least the size of the
2629 interface's MTU. Specifying a value that is numerically at least as
79abacc8 2630 large as 80% of <ref column="ingress_policing_rate"/> helps TCP come
3f5d8c02
BP
2631 closer to achieving the full rate.
2632 </p>
89365653
BP
2633 </column>
2634 </group>
2635
ccc09689 2636 <group title="Bidirectional Forwarding Detection (BFD)">
e58855ec 2637 <p>
039a8ccd
BP
2638 BFD, defined in RFC 5880 and RFC 5881, allows point-to-point
2639 detection of connectivity failures by occasional transmission of
2640 BFD control messages. Open vSwitch implements BFD to serve
2641 as a more popular and standards compliant alternative to CFM.
e58855ec 2642 </p>
ccc09689 2643
e58855ec 2644 <p>
039a8ccd
BP
2645 BFD operates by regularly transmitting BFD control messages at a rate
2646 negotiated independently in each direction. Each endpoint specifies
2647 the rate at which it expects to receive control messages, and the rate
2648 at which it is willing to transmit them. Open vSwitch uses a detection
2649 multiplier of three, meaning that an endpoint signals a connectivity
2650 fault if three consecutive BFD control messages fail to arrive. In the
2651 case of a unidirectional connectivity issue, the system not receiving
2652 BFD control messages signals the problem to its peer in the messages it
2653 transmits.
e58855ec 2654 </p>
ccc09689 2655
e58855ec 2656 <p>
039a8ccd
BP
2657 The Open vSwitch implementation of BFD aims to comply faithfully
2658 with RFC 5880 requirements. Open vSwitch does not implement the
2659 optional Authentication or ``Echo Mode'' features.
e58855ec 2660 </p>
ccc09689 2661
e58855ec 2662 <group title="BFD Configuration">
039a8ccd
BP
2663 <p>
2664 A controller sets up key-value pairs in the <ref column="bfd"/>
2665 column to enable and configure BFD.
2666 </p>
e58855ec 2667
039a8ccd 2668 <column name="bfd" key="enable" type='{"type": "boolean"}'>
f7491dce
AW
2669 True to enable BFD on this <ref table="Interface"/>. If not
2670 specified, BFD will not be enabled by default.
039a8ccd 2671 </column>
e58855ec 2672
039a8ccd
BP
2673 <column name="bfd" key="min_rx"
2674 type='{"type": "integer", "minInteger": 1}'>
e58855ec
BP
2675 The shortest interval, in milliseconds, at which this BFD session
2676 offers to receive BFD control messages. The remote endpoint may
2677 choose to send messages at a slower rate. Defaults to
2678 <code>1000</code>.
039a8ccd 2679 </column>
e58855ec 2680
039a8ccd
BP
2681 <column name="bfd" key="min_tx"
2682 type='{"type": "integer", "minInteger": 1}'>
e58855ec
BP
2683 The shortest interval, in milliseconds, at which this BFD session is
2684 willing to transmit BFD control messages. Messages will actually be
2685 transmitted at a slower rate if the remote endpoint is not willing to
2686 receive as quickly as specified. Defaults to <code>100</code>.
039a8ccd
BP
2687 </column>
2688
2689 <column name="bfd" key="decay_min_rx" type='{"type": "integer"}'>
2690 An alternate receive interval, in milliseconds, that must be greater
2691 than or equal to <ref column="bfd" key="min_rx"/>. The
2692 implementation switches from <ref column="bfd" key="min_rx"/> to <ref
2693 column="bfd" key="decay_min_rx"/> when there is no obvious incoming
2694 data traffic at the interface, to reduce the CPU and bandwidth cost
2695 of monitoring an idle interface. This feature may be disabled by
2696 setting a value of 0. This feature is reset whenever <ref
2697 column="bfd" key="decay_min_rx"/> or <ref column="bfd" key="min_rx"/>
2698 changes.
2699 </column>
2700
2701 <column name="bfd" key="forwarding_if_rx" type='{"type": "boolean"}'>
34c88624
AW
2702 When <code>true</code>, traffic received on the
2703 <ref table="Interface"/> is used to indicate the capability of packet
2704 I/O. BFD control packets are still transmitted and received. At
2705 least one BFD control packet must be received every 100 * <ref
2706 column="bfd" key="min_rx"/> amount of time. Otherwise, even if
2707 traffic are received, the <ref column="bfd" key="forwarding"/>
2708 will be <code>false</code>.
039a8ccd 2709 </column>
e58855ec 2710
039a8ccd
BP
2711 <column name="bfd" key="cpath_down" type='{"type": "boolean"}'>
2712 Set to true to notify the remote endpoint that traffic should not be
2713 forwarded to this system for some reason other than a connectivty
2714 failure on the interface being monitored. The typical underlying
2715 reason is ``concatenated path down,'' that is, that connectivity
2716 beyond the local system is down. Defaults to false.
2717 </column>
e58855ec 2718
039a8ccd 2719 <column name="bfd" key="check_tnl_key" type='{"type": "boolean"}'>
e58855ec
BP
2720 Set to true to make BFD accept only control messages with a tunnel
2721 key of zero. By default, BFD accepts control messages with any
2722 tunnel key.
039a8ccd
BP
2723 </column>
2724
2725 <column name="bfd" key="bfd_local_src_mac">
2726 Set to an Ethernet address in the form
2727 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2728 to set the MAC used as source for transmitted BFD packets. The
2729 default is the mac address of the BFD enabled interface.
2730 </column>
2731
2732 <column name="bfd" key="bfd_local_dst_mac">
2733 Set to an Ethernet address in the form
2734 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2735 to set the MAC used as destination for transmitted BFD packets. The
2736 default is <code>00:23:20:00:00:01</code>.
2737 </column>
2738
2739 <column name="bfd" key="bfd_remote_dst_mac">
2740 Set to an Ethernet address in the form
2741 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>
2742 to set the MAC used for checking the destination of received BFD packets.
2743 Packets with different destination MAC will not be considered as BFD packets.
2744 If not specified the destination MAC address of received BFD packets
2745 are not checked.
2746 </column>
2747
2748 <column name="bfd" key="bfd_src_ip">
dfe37e6a 2749 Set to an IPv4 address to set the IP address used as source for
1314739c 2750 transmitted BFD packets. The default is <code>169.254.1.1</code>.
039a8ccd 2751 </column>
dfe37e6a 2752
039a8ccd 2753 <column name="bfd" key="bfd_dst_ip">
dfe37e6a 2754 Set to an IPv4 address to set the IP address used as destination
1314739c 2755 for transmitted BFD packets. The default is <code>169.254.1.0</code>.
039a8ccd 2756 </column>
2eb79142
JG
2757
2758 <column name="bfd" key="oam">
2759 Some tunnel protocols (such as Geneve) include a bit in the header
2760 to indicate that the encapsulated packet is an OAM frame. By setting
2761 this to true, BFD packets will be marked as OAM if encapsulated in
2762 one of these tunnels.
2763 </column>
e58855ec 2764 </group>
ccc09689 2765
e58855ec 2766 <group title="BFD Status">
039a8ccd
BP
2767 <p>
2768 The switch sets key-value pairs in the <ref column="bfd_status"/>
2769 column to report the status of BFD on this interface. When BFD is
2770 not enabled, with <ref column="bfd" key="enable"/>, the switch clears
2771 all key-value pairs from <ref column="bfd_status"/>.
2772 </p>
2773
2774 <column name="bfd_status" key="state"
2775 type='{"type": "string",
2776 "enum": ["set", ["admin_down", "down", "init", "up"]]}'>
2777 Reports the state of the BFD session. The BFD session is fully
2778 healthy and negotiated if <code>UP</code>.
2779 </column>
2780
2781 <column name="bfd_status" key="forwarding" type='{"type": "boolean"}'>
2782 Reports whether the BFD session believes this <ref
2783 table="Interface"/> may be used to forward traffic. Typically this
2784 means the local session is signaling <code>UP</code>, and the remote
2785 system isn't signaling a problem such as concatenated path down.
2786 </column>
2787
2788 <column name="bfd_status" key="diagnostic">
60a15922
AZ
2789 A diagnostic code specifying the local system's reason for the
2790 last change in session state. The error messages are defined in
2791 section 4.1 of [RFC 5880].
039a8ccd
BP
2792 </column>
2793
2794 <column name="bfd_status" key="remote_state"
2795 type='{"type": "string",
2796 "enum": ["set", ["admin_down", "down", "init", "up"]]}'>
2797 Reports the state of the remote endpoint's BFD session.
2798 </column>
2799
2800 <column name="bfd_status" key="remote_diagnostic">
60a15922
AZ
2801 A diagnostic code specifying the remote system's reason for the
2802 last change in session state. The error messages are defined in
2803 section 4.1 of [RFC 5880].
039a8ccd 2804 </column>
4905e2df
AW
2805
2806 <column name="bfd_status" key="flap_count"
039a8ccd 2807 type='{"type": "integer", "minInteger": 0}'>
4905e2df
AW
2808 Counts the number of <ref column="bfd_status" key="forwarding" />
2809 flaps since start. A flap is considered as a change of the
2810 <ref column="bfd_status" key="forwarding" /> value.
2811 </column>
e58855ec 2812 </group>
ccc09689
EJ
2813 </group>
2814
93b8df38
EJ
2815 <group title="Connectivity Fault Management">
2816 <p>
2817 802.1ag Connectivity Fault Management (CFM) allows a group of
2818 Maintenance Points (MPs) called a Maintenance Association (MA) to
2819 detect connectivity problems with each other. MPs within a MA should
2820 have complete and exclusive interconnectivity. This is verified by
2821 occasionally broadcasting Continuity Check Messages (CCMs) at a
2822 configurable transmission interval.
2823 </p>
2824
144216a3
EJ
2825 <p>
2826 According to the 802.1ag specification, each Maintenance Point should
2827 be configured out-of-band with a list of Remote Maintenance Points it
2828 should have connectivity to. Open vSwitch differs from the
2829 specification in this area. It simply assumes the link is faulted if
2830 no Remote Maintenance Points are reachable, and considers it not
2831 faulted otherwise.
2832 </p>
2833
b363bae4 2834 <p>
039a8ccd
BP
2835 When operating over tunnels which have no <code>in_key</code>, or an
2836 <code>in_key</code> of <code>flow</code>. CFM will only accept CCMs
2837 with a tunnel key of zero.
b363bae4
EJ
2838 </p>
2839
93b8df38 2840 <column name="cfm_mpid">
b1a6083a
AW
2841 <p>
2842 A Maintenance Point ID (MPID) uniquely identifies each endpoint
2843 within a Maintenance Association. The MPID is used to identify this
2844 endpoint to other Maintenance Points in the MA. Each end of a link
2845 being monitored should have a different MPID. Must be configured to
2846 enable CFM on this <ref table="Interface"/>.
2847 </p>
2848 <p>
2849 According to the 802.1ag specification, MPIDs can only range between
2850 [1, 8191]. However, extended mode (see <ref column="other_config"
2851 key="cfm_extended"/>) supports eight byte MPIDs.
2852 </p>
93b8df38 2853 </column>
b31bcf60 2854
76c4290d
AW
2855 <column name="cfm_flap_count">
2856 Counts the number of cfm fault flapps since boot. A flap is
2857 considered to be a change of the <ref column="cfm_fault"/> value.
2858 </column>
2859
93b8df38 2860 <column name="cfm_fault">
144216a3
EJ
2861 <p>
2862 Indicates a connectivity fault triggered by an inability to receive
2863 heartbeats from any remote endpoint. When a fault is triggered on
2864 <ref table="Interface"/>s participating in bonds, they will be
2865 disabled.
2866 </p>
2867 <p>
2868 Faults can be triggered for several reasons. Most importantly they
2869 are triggered when no CCMs are received for a period of 3.5 times the
2870 transmission interval. Faults are also triggered when any CCMs
2871 indicate that a Remote Maintenance Point is not receiving CCMs but
2872 able to send them. Finally, a fault is triggered if a CCM is
2873 received which indicates unexpected configuration. Notably, this
2874 case arises when a CCM is received which advertises the local MPID.
2875 </p>
93b8df38 2876 </column>
a5faa982 2877
b9380396
EJ
2878 <column name="cfm_fault_status" key="recv">
2879 Indicates a CFM fault was triggered due to a lack of CCMs received on
2880 the <ref table="Interface"/>.
2881 </column>
2882
2883 <column name="cfm_fault_status" key="rdi">
2884 Indicates a CFM fault was triggered due to the reception of a CCM with
2885 the RDI bit flagged. Endpoints set the RDI bit in their CCMs when they
2886 are not receiving CCMs themselves. This typically indicates a
2887 unidirectional connectivity failure.
2888 </column>
2889
2890 <column name="cfm_fault_status" key="maid">
2891 Indicates a CFM fault was triggered due to the reception of a CCM with
2892 a MAID other than the one Open vSwitch uses. CFM broadcasts are tagged
2893 with an identification number in addition to the MPID called the MAID.
2894 Open vSwitch only supports receiving CCM broadcasts tagged with the
2895 MAID it uses internally.
2896 </column>
2897
2898 <column name="cfm_fault_status" key="loopback">
2899 Indicates a CFM fault was triggered due to the reception of a CCM
2900 advertising the same MPID configured in the <ref column="cfm_mpid"/>
2901 column of this <ref table="Interface"/>. This may indicate a loop in
2902 the network.
2903 </column>
2904
2905 <column name="cfm_fault_status" key="overflow">
2906 Indicates a CFM fault was triggered because the CFM module received
2907 CCMs from more remote endpoints than it can keep track of.
2908 </column>
2909
2910 <column name="cfm_fault_status" key="override">
2911 Indicates a CFM fault was manually triggered by an administrator using
2912 an <code>ovs-appctl</code> command.
2913 </column>
2914
2b540ecb
MM
2915 <column name="cfm_fault_status" key="interval">
2916 Indicates a CFM fault was triggered due to the reception of a CCM
2917 frame having an invalid interval.
2918 </column>
2919
1c0333b6
EJ
2920 <column name="cfm_remote_opstate">
2921 <p>When in extended mode, indicates the operational state of the
039a8ccd
BP
2922 remote endpoint as either <code>up</code> or <code>down</code>. See
2923 <ref column="other_config" key="cfm_opstate"/>.
1c0333b6
EJ
2924 </p>
2925 </column>
2926
3967a833
MM
2927 <column name="cfm_health">
2928 <p>
2929 Indicates the health of the interface as a percentage of CCM frames
2930 received over 21 <ref column="other_config" key="cfm_interval"/>s.
2931 The health of an interface is undefined if it is communicating with
2932 more than one <ref column="cfm_remote_mpids"/>. It reduces if
2933 healthy heartbeats are not received at the expected rate, and
2934 gradually improves as healthy heartbeats are received at the desired
2935 rate. Every 21 <ref column="other_config" key="cfm_interval"/>s, the
2936 health of the interface is refreshed.
2937 </p>
2938 <p>
2939 As mentioned above, the faults can be triggered for several reasons.
2940 The link health will deteriorate even if heartbeats are received but
2941 they are reported to be unhealthy. An unhealthy heartbeat in this
2942 context is a heartbeat for which either some fault is set or is out
2943 of sequence. The interface health can be 100 only on receiving
2944 healthy heartbeats at the desired rate.
2945 </p>
2946 </column>
2947
a5faa982
EJ
2948 <column name="cfm_remote_mpids">
2949 When CFM is properly configured, Open vSwitch will occasionally
2950 receive CCM broadcasts. These broadcasts contain the MPID of the
2951 sending Maintenance Point. The list of MPIDs from which this
2952 <ref table="Interface"/> is receiving broadcasts from is regularly
2953 collected and written to this column.
2954 </column>
3fd8d445 2955
f9e5e5b3
BP
2956 <column name="other_config" key="cfm_interval"
2957 type='{"type": "integer"}'>
612ca9c5
BP
2958 <p>
2959 The interval, in milliseconds, between transmissions of CFM
2960 heartbeats. Three missed heartbeat receptions indicate a
2961 connectivity fault.
2962 </p>
2963
2964 <p>
2965 In standard operation only intervals of 3, 10, 100, 1,000, 10,000,
2966 60,000, or 600,000 ms are supported. Other values will be rounded
2967 down to the nearest value on the list. Extended mode (see <ref
2968 column="other_config" key="cfm_extended"/>) supports any interval up
2969 to 65,535 ms. In either mode, the default is 1000 ms.
2970 </p>
2971
2972 <p>We do not recommend using intervals less than 100 ms.</p>
3fd8d445
BP
2973 </column>
2974
f9e5e5b3
BP
2975 <column name="other_config" key="cfm_extended"
2976 type='{"type": "boolean"}'>
3fd8d445
BP
2977 When <code>true</code>, the CFM module operates in extended mode. This
2978 causes it to use a nonstandard destination address to avoid conflicting
2979 with compliant implementations which may be running concurrently on the
2980 network. Furthermore, extended mode increases the accuracy of the
2981 <code>cfm_interval</code> configuration parameter by breaking wire
b1a6083a
AW
2982 compatibility with 802.1ag compliant implementations. And extended
2983 mode allows eight byte MPIDs. Defaults to <code>false</code>.
3fd8d445 2984 </column>
90967e95
EJ
2985
2986 <column name="other_config" key="cfm_demand" type='{"type": "boolean"}'>
2987 <p>
2988 When <code>true</code>, and
2989 <ref column="other_config" key="cfm_extended"/> is true, the CFM
2990 module operates in demand mode. When in demand mode, traffic
2991 received on the <ref table="Interface"/> is used to indicate
5767a79a
AW
2992 liveness. CCMs are still transmitted and received. At least one
2993 CCM must be received every 100 * <ref column="other_config"
2994 key="cfm_interval"/> amount of time. Otherwise, even if traffic
2995 are received, the CFM module will raise the connectivity fault.
90967e95
EJ
2996 </p>
2997
2998 <p>
039a8ccd 2999 Demand mode has a couple of caveats:
90967e95
EJ
3000 <ul>
3001 <li>
3002 To ensure that ovs-vswitchd has enough time to pull statistics
03f209ba
AW
3003 from the datapath, the fault detection interval is set to
3004 3.5 * MAX(<ref column="other_config" key="cfm_interval"/>, 500)
3005 ms.
90967e95
EJ
3006 </li>
3007
3008 <li>
3009 To avoid ambiguity, demand mode disables itself when there are
3010 multiple remote maintenance points.
3011 </li>
3012
3013 <li>
3014 If the <ref table="Interface"/> is heavily congested, CCMs
3015 containing the <ref column="other_config" key="cfm_opstate"/>
3016 status may be dropped causing changes in the operational state to
3017 be delayed. Similarly, if CCMs containing the RDI bit are not
3018 received, unidirectional link failures may not be detected.
3019 </li>
3020 </ul>
3021 </p>
3022 </column>
3023
dae57238
BP
3024 <column name="other_config" key="cfm_opstate"
3025 type='{"type": "string", "enum": ["set", ["down", "up"]]}'>
86dc6501
EJ
3026 When <code>down</code>, the CFM module marks all CCMs it generates as
3027 operationally down without triggering a fault. This allows remote
3028 maintenance points to choose not to forward traffic to the
3029 <ref table="Interface"/> on which this CFM module is running.
3030 Currently, in Open vSwitch, the opdown bit of CCMs affects
3031 <ref table="Interface"/>s participating in bonds, and the bundle
3032 OpenFlow action. This setting is ignored when CFM is not in extended
3033 mode. Defaults to <code>up</code>.
3034 </column>
75a4ead1
EJ
3035
3036 <column name="other_config" key="cfm_ccm_vlan"
039a8ccd 3037 type='{"type": "integer", "minInteger": 1, "maxInteger": 4095}'>
75a4ead1 3038 When set, the CFM module will apply a VLAN tag to all CCMs it generates
189cb9e4
EJ
3039 with the given value. May be the string <code>random</code> in which
3040 case each CCM will be tagged with a different randomly generated VLAN.
75a4ead1
EJ
3041 </column>
3042
a7aa2d3c 3043 <column name="other_config" key="cfm_ccm_pcp"
039a8ccd 3044 type='{"type": "integer", "minInteger": 1, "maxInteger": 7}'>
a7aa2d3c 3045 When set, the CFM module will apply a VLAN tag to all CCMs it generates
b363bae4 3046 with the given PCP value, the VLAN ID of the tag is governed by the
a7aa2d3c
EJ
3047 value of <ref column="other_config" key="cfm_ccm_vlan"/>. If
3048 <ref column="other_config" key="cfm_ccm_vlan"/> is unset, a VLAN ID of
3049 zero is used.
3050 </column>
3051
93b8df38
EJ
3052 </group>
3053
3fd8d445 3054 <group title="Bonding Configuration">
f9e5e5b3
BP
3055 <column name="other_config" key="lacp-port-id"
3056 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
3fd8d445
BP
3057 The LACP port ID of this <ref table="Interface"/>. Port IDs are
3058 used in LACP negotiations to identify individual ports
f9e5e5b3 3059 participating in a bond.
a8172aa3
EJ
3060 </column>
3061
f9e5e5b3
BP
3062 <column name="other_config" key="lacp-port-priority"
3063 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
3fd8d445
BP
3064 The LACP port priority of this <ref table="Interface"/>. In LACP
3065 negotiations <ref table="Interface"/>s with numerically lower
f9e5e5b3 3066 priorities are preferred for aggregation.
89365653 3067 </column>
018f1525 3068
f9e5e5b3
BP
3069 <column name="other_config" key="lacp-aggregation-key"
3070 type='{"type": "integer", "minInteger": 1, "maxInteger": 65535}'>
3fd8d445
BP
3071 The LACP aggregation key of this <ref table="Interface"/>. <ref
3072 table="Interface"/>s with different aggregation keys may not be active
f9e5e5b3 3073 within a given <ref table="Port"/> at the same time.
a3acf0b0 3074 </column>
3fd8d445 3075 </group>
a3acf0b0 3076
3fd8d445
BP
3077 <group title="Virtual Machine Identifiers">
3078 <p>
3079 These key-value pairs specifically apply to an interface that
3080 represents a virtual Ethernet interface connected to a virtual
3081 machine. These key-value pairs should not be present for other types
3082 of interfaces. Keys whose names end in <code>-uuid</code> have
3083 values that uniquely identify the entity in question. For a Citrix
3084 XenServer hypervisor, these values are UUIDs in RFC 4122 format.
3085 Other hypervisors may use other formats.
3086 </p>
3087
3088 <column name="external_ids" key="attached-mac">
3089 The MAC address programmed into the ``virtual hardware'' for this
3090 interface, in the form
3091 <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
3092 For Citrix XenServer, this is the value of the <code>MAC</code> field
3093 in the VIF record for this interface.
3094 </column>
3095
3096 <column name="external_ids" key="iface-id">
3097 A system-unique identifier for the interface. On XenServer, this will
3098 commonly be the same as <ref column="external_ids" key="xs-vif-uuid"/>.
3099 </column>
3100
cf9deac5
BP
3101 <column name="external_ids" key="iface-status"
3102 type='{"type": "string",
3103 "enum": ["set", ["active", "inactive"]]}'>
3104 <p>
3105 Hypervisors may sometimes have more than one interface associated
3106 with a given <ref column="external_ids" key="iface-id"/>, only one of
3107 which is actually in use at a given time. For example, in some
3108 circumstances XenServer has both a ``tap'' and a ``vif'' interface
3109 for a single <ref column="external_ids" key="iface-id"/>, but only
3110 uses one of them at a time. A hypervisor that behaves this way must
3111 mark the currently in use interface <code>active</code> and the
3112 others <code>inactive</code>. A hypervisor that never has more than
3113 one interface for a given <ref column="external_ids" key="iface-id"/>
3114 may mark that interface <code>active</code> or omit <ref
3115 column="external_ids" key="iface-status"/> entirely.
3116 </p>
3117
3118 <p>
3119 During VM migration, a given <ref column="external_ids"
3120 key="iface-id"/> might transiently be marked <code>active</code> on
3121 two different hypervisors. That is, <code>active</code> means that
3122 this <ref column="external_ids" key="iface-id"/> is the active
3123 instance within a single hypervisor, not in a broader scope.
3634eb99
BP
3124 There is one exception: some hypervisors support ``migration'' from a
3125 given hypervisor to itself (most often for test purposes). During
3126 such a ``migration,'' two instances of a single <ref
3127 column="external_ids" key="iface-id"/> might both be briefly marked
3128 <code>active</code> on a single hypervisor.
cf9deac5
BP
3129 </p>
3130 </column>
3131
3fd8d445
BP
3132 <column name="external_ids" key="xs-vif-uuid">
3133 The virtual interface associated with this interface.
3134 </column>
3135
3136 <column name="external_ids" key="xs-network-uuid">
3137 The virtual network to which this interface is attached.
3138 </column>
3139
c473936b
GS
3140 <column name="external_ids" key="vm-id">
3141 The VM to which this interface belongs. On XenServer, this will be the
3142 same as <ref column="external_ids" key="xs-vm-uuid"/>.
3143 </column>
3144
3fd8d445
BP
3145 <column name="external_ids" key="xs-vm-uuid">
3146 The VM to which this interface belongs.
018f1525 3147 </column>
89365653 3148 </group>
3fd8d445 3149
99eef98b
DF
3150 <group title="Auto Attach Configuration">
3151 <p>
039a8ccd 3152 Auto Attach configuration for a particular interface.
99eef98b
DF
3153 </p>
3154
3155 <column name="lldp" key="enable" type='{"type": "boolean"}'>
039a8ccd
BP
3156 True to enable LLDP on this <ref table="Interface"/>. If not
3157 specified, LLDP will be disabled by default.
99eef98b
DF
3158 </column>
3159 </group>
3160
9fd39370
SC
3161 <group title="Flow control Configuration">
3162 <p>
3163 Ethernet flow control defined in IEEE 802.1Qbb provides link level flow
3164 control using MAC pause frames. Implemented only for interfaces with
3165 type <code>dpdk</code>.
3166 </p>
3167
3168 <column name="options" key="rx-flow-ctrl" type='{"type": "boolean"}'>
3169 Set to <code>true</code> to enable Rx flow control on physical ports.
3170 By default, Rx flow control is disabled.
3171 </column>
3172
3173 <column name="options" key="tx-flow-ctrl" type='{"type": "boolean"}'>
3174 Set to <code>true</code> to enable Tx flow control on physical ports.
3175 By default, Tx flow control is disabled.
3176 </column>
3177
3178 <column name="options" key="flow-ctrl-autoneg"
3179 type='{"type": "boolean"}'>
3180 Set to <code>true</code> to enable flow control auto negotiation on
3181 physical ports. By default, auto-neg is disabled.
3182 </column>
3183 </group>
3184
3fd8d445
BP
3185 <group title="Common Columns">
3186 The overall purpose of these columns is described under <code>Common
3187 Columns</code> at the beginning of this document.
3188
3189 <column name="other_config"/>
3190 <column name="external_ids"/>
3191 </group>
89365653
BP
3192 </table>
3193
254750ce
BP
3194 <table name="Flow_Table" title="OpenFlow table configuration">
3195 <p>Configuration for a particular OpenFlow table.</p>
3196
3197 <column name="name">
3198 The table's name. Set this column to change the name that controllers
3199 will receive when they request table statistics, e.g. <code>ovs-ofctl
3200 dump-tables</code>. The name does not affect switch behavior.
3201 </column>
3202
82c22d34 3203 <group title="Eviction Policy">
254750ce 3204 <p>
82c22d34
BP
3205 Open vSwitch supports limiting the number of flows that may be
3206 installed in a flow table, via the <ref column="flow_limit"/> column.
3207 When adding a flow would exceed this limit, by default Open vSwitch
3208 reports an error, but there are two ways to configure Open vSwitch to
3209 instead delete (``evict'') a flow to make room for the new one:
254750ce
BP
3210 </p>
3211
82c22d34
BP
3212 <ul>
3213 <li>
3214 Set the <ref column="overflow_policy"/> column to <code>evict</code>.
3215 </li>
254750ce 3216
82c22d34
BP
3217 <li>
3218 Send an OpenFlow 1.4+ ``table mod request'' to enable eviction for
3219 the flow table (e.g. <code>ovs-ofctl -O OpenFlow14 mod-table br0 0
3220 evict</code> to enable eviction on flow table 0 of bridge
3221 <code>br0</code>).
3222 </li>
3223 </ul>
254750ce
BP
3224
3225 <p>
3226 When a flow must be evicted due to overflow, the flow to evict is
f70b94de
BP
3227 chosen through an approximation of the following algorithm. This
3228 algorithm is used regardless of how eviction was enabled:
254750ce
BP
3229 </p>
3230
3231 <ol>
3232 <li>
3233 Divide the flows in the table into groups based on the values of the
f70b94de
BP
3234 fields or subfields specified in the <ref column="groups"/> column,
3235 so that all of the flows in a given group have the same values for
3236 those fields. If a flow does not specify a given field, that field's
3237 value is treated as 0. If <ref column="groups"/> is empty, then all
3238 of the flows in the flow table are treated as a single group.
254750ce
BP
3239 </li>
3240
3241 <li>
3242 Consider the flows in the largest group, that is, the group that
3243 contains the greatest number of flows. If two or more groups all
3244 have the same largest number of flows, consider the flows in all of
3245 those groups.
3246 </li>
3247
f70b94de
BP
3248 <li>
3249 If the flows under consideration have different importance values,
3250 eliminate from consideration any flows except those with the lowest
3251 importance. (``Importance,'' a 16-bit integer value attached to each
3252 flow, was introduced in OpenFlow 1.4. Flows inserted with older
3253 versions of OpenFlow always have an importance of 0.)
3254 </li>
3255
254750ce
BP
3256 <li>
3257 Among the flows under consideration, choose the flow that expires
3258 soonest for eviction.
3259 </li>
3260 </ol>
3261
3262 <p>
82c22d34
BP
3263 The eviction process only considers flows that have an idle timeout
3264 or a hard timeout. That is, eviction never deletes permanent flows.
7792bfe0 3265 (Permanent flows do count against <ref column="flow_limit"/>.)
254750ce
BP
3266 </p>
3267
82c22d34
BP
3268 <column name="flow_limit">
3269 If set, limits the number of flows that may be added to the table.
3270 Open vSwitch may limit the number of flows in a table for other
3271 reasons, e.g. due to hardware limitations or for resource availability
3272 or performance reasons.
3273 </column>
254750ce 3274
82c22d34
BP
3275 <column name="overflow_policy">
3276 <p>
3277 Controls the switch's behavior when an OpenFlow flow table
3278 modification request would add flows in excess of <ref
3279 column="flow_limit"/>. The supported values are:
3280 </p>
13751fd8 3281
82c22d34
BP
3282 <dl>
3283 <dt><code>refuse</code></dt>
3284 <dd>
3285 Refuse to add the flow or flows. This is also the default policy
3286 when <ref column="overflow_policy"/> is unset.
3287 </dd>
f017d986 3288
82c22d34
BP
3289 <dt><code>evict</code></dt>
3290 <dd>
3291 Delete a flow chosen according to the algorithm described above.
3292 </dd>
3293 </dl>
3294 </column>
f017d986 3295
82c22d34
BP
3296 <column name="groups">
3297 <p>
3298 When <ref column="overflow_policy"/> is <code>evict</code>, this
3299 controls how flows are chosen for eviction when the flow table would
3300 otherwise exceed <ref column="flow_limit"/> flows. Its value is a
3301 set of NXM fields or sub-fields, each of which takes one of the forms
3302 <code><var>field</var>[]</code> or
3303 <code><var>field</var>[<var>start</var>..<var>end</var>]</code>,
3304 e.g. <code>NXM_OF_IN_PORT[]</code>. Please see
3305 <code>nicira-ext.h</code> for a complete list of NXM field names.
3306 </p>
f017d986 3307
82c22d34
BP
3308 <p>
3309 Open vSwitch ignores any invalid or unknown field specifications.
3310 </p>
f017d986 3311
82c22d34
BP
3312 <p>
3313 When eviction is not enabled, via <ref column="overflow_policy"/> or
3314 an OpenFlow 1.4+ ``table mod,'' this column has no effect.
3315 </p>
3316 </column>
3317 </group>
13751fd8 3318
82c22d34
BP
3319 <group title="Classifier Optimization">
3320 <column name="prefixes">
3321 <p>
3322 This string set specifies which fields should be used for
3323 address prefix tracking. Prefix tracking allows the
3324 classifier to skip rules with longer than necessary prefixes,
3325 resulting in better wildcarding for datapath flows.
3326 </p>
3327 <p>
3328 Prefix tracking may be beneficial when a flow table contains
3329 matches on IP address fields with different prefix lengths.
3330 For example, when a flow table contains IP address matches on
3331 both full addresses and proper prefixes, the full address
3332 matches will typically cause the datapath flow to un-wildcard
3333 the whole address field (depending on flow entry priorities).
3334 In this case each packet with a different address gets handed
3335 to the userspace for flow processing and generates its own
3336 datapath flow. With prefix tracking enabled for the address
3337 field in question packets with addresses matching shorter
3338 prefixes would generate datapath flows where the irrelevant
3339 address bits are wildcarded, allowing the same datapath flow
3340 to handle all the packets within the prefix in question. In
3341 this case many userspace upcalls can be avoided and the
3342 overall performance can be better.
3343 </p>
3344 <p>
3345 This is a performance optimization only, so packets will
3346 receive the same treatment with or without prefix tracking.
3347 </p>
3348 <p>
3349 The supported fields are: <code>tun_id</code>,
3350 <code>tun_src</code>, <code>tun_dst</code>,
80c4589a 3351 <code>tun_ipv6_src</code>, <code>tun_ipv6_dst</code>,
82c22d34
BP
3352 <code>nw_src</code>, <code>nw_dst</code> (or aliases
3353 <code>ip_src</code> and <code>ip_dst</code>),
3354 <code>ipv6_src</code>, and <code>ipv6_dst</code>. (Using this
3355 feature for <code>tun_id</code> would only make sense if the
3356 tunnel IDs have prefix structure similar to IP addresses.)
3357 </p>
13751fd8 3358
82c22d34
BP
3359 <p>
3360 By default, the <code>prefixes=ip_dst,ip_src</code> are used
3361 on each flow table. This instructs the flow classifier to
3362 track the IP destination and source addresses used by the
3363 rules in this specific flow table.
3364 </p>
3365
3366 <p>
3367 The keyword <code>none</code> is recognized as an explicit
3368 override of the default values, causing no prefix fields to be
3369 tracked.
3370 </p>
3371
3372 <p>
3373 To set the prefix fields, the flow table record needs to
3374 exist:
3375 </p>
3376
3377 <dl>
3378 <dt><code>ovs-vsctl set Bridge br0 flow_tables:0=@N1 -- --id=@N1 create Flow_Table name=table0</code></dt>
3379 <dd>
3380 Creates a flow table record for the OpenFlow table number 0.
3381 </dd>
3382
3383 <dt><code>ovs-vsctl set Flow_Table table0 prefixes=ip_dst,ip_src</code></dt>
3384 <dd>
3385 Enables prefix tracking for IP source and destination
3386 address fields.
3387 </dd>
3388 </dl>
3389
3390 <p>
3391 There is a maximum number of fields that can be enabled for any
3392 one flow table. Currently this limit is 3.
3393 </p>
3394 </column>
3395 </group>
e3fbd9df
BP
3396
3397 <group title="Common Columns">
3398 The overall purpose of these columns is described under <code>Common
3399 Columns</code> at the beginning of this document.
3400
3401 <column name="external_ids"/>
3402 </group>
254750ce
BP
3403 </table>
3404
c1c9c9c4
BP
3405 <table name="QoS" title="Quality of Service configuration">
3406 <p>Quality of Service (QoS) configuration for each Port that
3fd8d445 3407 references it.</p>
c1c9c9c4
BP
3408
3409 <column name="type">
b850dc6d
BP
3410 <p>The type of QoS to implement. The currently defined types are
3411 listed below:</p>
c1c9c9c4
BP
3412 <dl>
3413 <dt><code>linux-htb</code></dt>
6784cb57
BP
3414 <dd>
3415 Linux ``hierarchy token bucket'' classifier. See tc-htb(8) (also at
3416 <code>http://linux.die.net/man/8/tc-htb</code>) and the HTB manual
3417 (<code>http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm</code>)
3418 for information on how this classifier works and how to configure it.
3419 </dd>
6cf888b8 3420
a339aa81
EJ
3421 <dt><code>linux-hfsc</code></dt>
3422 <dd>
3423 Linux "Hierarchical Fair Service Curve" classifier.
3424 See <code>http://linux-ip.net/articles/hfsc.en/</code> for
3425 information on how this classifier works.
3426 </dd>
6cf888b8 3427
677d9158
JV
3428 <dt><code>linux-sfq</code></dt>
3429 <dd>
3430 Linux ``Stochastic Fairness Queueing'' classifier. See
3431 <code>tc-sfq</code>(8) (also at
3432 <code>http://linux.die.net/man/8/tc-sfq</code>) for information on
3433 how this classifier works.
3434 </dd>
6cf888b8 3435
677d9158
JV
3436 <dt><code>linux-codel</code></dt>
3437 <dd>
3438 Linux ``Controlled Delay'' classifier. See <code>tc-codel</code>(8)
3439 (also at
3440 <code>http://man7.org/linux/man-pages/man8/tc-codel.8.html</code>)
3441 for information on how this classifier works.
3442 </dd>
6cf888b8 3443
677d9158
JV
3444 <dt><code>linux-fq_codel</code></dt>
3445 <dd>
3446 Linux ``Fair Queuing with Controlled Delay'' classifier. See
3447 <code>tc-fq_codel</code>(8) (also at
3448 <code>http://man7.org/linux/man-pages/man8/tc-fq_codel.8.html</code>)
3449 for information on how this classifier works.
3450 </dd>
6cf888b8
BS
3451
3452 <dt><code>linux-noop</code></dt>
3453 <dd>
3454 Linux ``No operation.'' By default, Open vSwitch manages quality of
3455 service on all of its configured ports. This can be helpful, but
3456 sometimes administrators prefer to use other software to manage QoS.
3457 This <ref column="type"/> prevents Open vSwitch from changing the QoS
3458 configuration for a port.
3459 </dd>
3460
0bf765f7
IS
3461 <dt><code>egress-policer</code></dt>
3462 <dd>
6cf888b8 3463 A DPDK egress policer algorithm using the DPDK
0bf765f7
IS
3464 rte_meter library. The rte_meter library provides an implementation
3465 which allows the metering and policing of traffic. The implementation
3466 in OVS essentially creates a single token bucket used to police
3467 traffic. It should be noted that when the rte_meter is configured as
3468 part of QoS there will be a performance overhead as the rte_meter
3469 itself will consume CPU cycles in order to police traffic. These CPU
3470 cycles ordinarily are used for packet proccessing. As such the drop
3471 in performance will be noticed in terms of overall aggregate traffic
3472 throughput.
3473 </dd>
3474 </dl>
c1c9c9c4
BP
3475 </column>
3476
3477 <column name="queues">
3478 <p>A map from queue numbers to <ref table="Queue"/> records. The
3fd8d445
BP
3479 supported range of queue numbers depend on <ref column="type"/>. The
3480 queue numbers are the same as the <code>queue_id</code> used in
3481 OpenFlow in <code>struct ofp_action_enqueue</code> and other
2c999774
BP
3482 structures.</p>
3483
3484 <p>
3485 Queue 0 is the ``default queue.'' It is used by OpenFlow output
8bddb894
BP
3486 actions when no specific queue has been set. When no configuration for
3487 queue 0 is present, it is automatically configured as if a <ref
3488 table="Queue"/> record with empty <ref table="Queue" column="dscp"/>
3489 and <ref table="Queue" column="other_config"/> columns had been
3490 specified.
2c999774
BP
3491 (Before version 1.6, Open vSwitch would leave queue 0 unconfigured in
3492 this case. With some queuing disciplines, this dropped all packets
3493 destined for the default queue.)
3494 </p>
c1c9c9c4
BP
3495 </column>
3496
3fd8d445
BP
3497 <group title="Configuration for linux-htb and linux-hfsc">
3498 <p>
3499 The <code>linux-htb</code> and <code>linux-hfsc</code> classes support
3500 the following key-value pair:
3501 </p>
9cc6bf75 3502
f9e5e5b3 3503 <column name="other_config" key="max-rate" type='{"type": "integer"}'>
3fd8d445
BP
3504 Maximum rate shared by all queued traffic, in bit/s. Optional. If not
3505 specified, for physical interfaces, the default is the link rate. For
3506 other interfaces or if the link rate cannot be determined, the default
3507 is currently 100 Mbps.
3508 </column>
3509 </group>
13008eb3 3510
0bf765f7
IS
3511 <group title="Configuration for egress-policer QoS">
3512 <p>
3513 <ref table="QoS"/> <ref table="QoS" column="type"/>
3514 <code>egress-policer</code> provides egress policing for userspace
3515 port types with DPDK.
3516
3517 It has the following key-value pairs defined.
3518 </p>
3519
3520 <column name="other_config" key="cir" type='{"type": "integer"}'>
3521 The Committed Information Rate (CIR) is measured in bytes of IP
3522 packets per second, i.e. it includes the IP header, but not link
3523 specific (e.g. Ethernet) headers. This represents the bytes per second
3524 rate at which the token bucket will be updated. The cir value is
3525 calculated by (pps x packet data size). For example assuming a user
3526 wishes to limit a stream consisting of 64 byte packets to 1 million
3527 packets per second the CIR would be set to to to 46000000. This value
3528 can be broken into '1,000,000 x 46'. Where 1,000,000 is the policing
3529 rate for the number of packets per second and 46 represents the size
3530 of the packet data for a 64 byte ip packet.
3531 </column>
3532 <column name="other_config" key="cbs" type='{"type": "integer"}'>
3533 The Committed Burst Size (CBS) is measured in bytes and represents a
3534 token bucket. At a minimum this value should be be set to the expected
3535 largest size packet in the traffic stream. In practice larger values
3536 may be used to increase the size of the token bucket. If a packet can
3537 be transmitted then the cbs will be decremented by the number of
3538 bytes/tokens of the packet. If there are not enough tokens in the cbs
3539 bucket the packet will be dropped.
3540 </column>
3541 </group>
3542
3fd8d445
BP
3543 <group title="Common Columns">
3544 The overall purpose of these columns is described under <code>Common
3545 Columns</code> at the beginning of this document.
3546
3547 <column name="other_config"/>
3548 <column name="external_ids"/>
3549 </group>
c1c9c9c4
BP
3550 </table>
3551
3552 <table name="Queue" title="QoS output queue.">
3553 <p>A configuration for a port output queue, used in configuring Quality of
3fd8d445
BP
3554 Service (QoS) features. May be referenced by <ref column="queues"
3555 table="QoS"/> column in <ref table="QoS"/> table.</p>
13008eb3 3556
8b36f51e
EJ
3557 <column name="dscp">
3558 If set, Open vSwitch will mark all traffic egressing this
3559 <ref table="Queue"/> with the given DSCP bits. Traffic egressing the
3560 default <ref table="Queue"/> is only marked if it was explicitly selected
3561 as the <ref table="Queue"/> at the time the packet was output. If unset,
3562 the DSCP bits of traffic egressing this <ref table="Queue"/> will remain
3563 unchanged.
3564 </column>
3565
3fd8d445
BP
3566 <group title="Configuration for linux-htb QoS">
3567 <p>
69822b3c
EJ
3568 <ref table="QoS"/> <ref table="QoS" column="type"/>
3569 <code>linux-htb</code> may use <code>queue_id</code>s less than 61440.
3570 It has the following key-value pairs defined.
3fd8d445 3571 </p>
9cc6bf75 3572
f9e5e5b3
BP
3573 <column name="other_config" key="min-rate"
3574 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
3575 Minimum guaranteed bandwidth, in bit/s.
3576 </column>
3577
f9e5e5b3
BP
3578 <column name="other_config" key="max-rate"
3579 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
3580 Maximum allowed bandwidth, in bit/s. Optional. If specified, the
3581 queue's rate will not be allowed to exceed the specified value, even
3582 if excess bandwidth is available. If unspecified, defaults to no
3583 limit.
3584 </column>
3585
f9e5e5b3
BP
3586 <column name="other_config" key="burst"
3587 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
3588 Burst size, in bits. This is the maximum amount of ``credits'' that a
3589 queue can accumulate while it is idle. Optional. Details of the
3590 <code>linux-htb</code> implementation require a minimum burst size, so
3591 a too-small <code>burst</code> will be silently ignored.
3592 </column>
3593
f9e5e5b3
BP
3594 <column name="other_config" key="priority"
3595 type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
3596 A queue with a smaller <code>priority</code> will receive all the
3597 excess bandwidth that it can use before a queue with a larger value
3598 receives any. Specific priority values are unimportant; only relative
3599 ordering matters. Defaults to 0 if unspecified.
3fd8d445
BP
3600 </column>
3601 </group>
3602
3603 <group title="Configuration for linux-hfsc QoS">
3604 <p>
69822b3c
EJ
3605 <ref table="QoS"/> <ref table="QoS" column="type"/>
3606 <code>linux-hfsc</code> may use <code>queue_id</code>s less than 61440.
3607 It has the following key-value pairs defined.
3fd8d445 3608 </p>
9cc6bf75 3609
f9e5e5b3
BP
3610 <column name="other_config" key="min-rate"
3611 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
3612 Minimum guaranteed bandwidth, in bit/s.
3613 </column>
9cc6bf75 3614
f9e5e5b3
BP
3615 <column name="other_config" key="max-rate"
3616 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
3617 Maximum allowed bandwidth, in bit/s. Optional. If specified, the
3618 queue's rate will not be allowed to exceed the specified value, even if
3619 excess bandwidth is available. If unspecified, defaults to no
3620 limit.
3621 </column>
3622 </group>
3623
3624 <group title="Common Columns">
3625 The overall purpose of these columns is described under <code>Common
3626 Columns</code> at the beginning of this document.
3627
3628 <column name="other_config"/>
3629 <column name="external_ids"/>
3630 </group>
c1c9c9c4
BP
3631 </table>
3632
9ae7ddc0 3633 <table name="Mirror" title="Port mirroring.">
89365653
BP
3634 <p>A port mirror within a <ref table="Bridge"/>.</p>
3635 <p>A port mirror configures a bridge to send selected frames to special
92ada132 3636 ``mirrored'' ports, in addition to their normal destinations. Mirroring
9ae7ddc0 3637 traffic may also be referred to as SPAN or RSPAN, depending on how
92ada132 3638 the mirrored traffic is sent.</p>
89365653 3639
7efbc3b7
BP
3640 <p>
3641 When a packet enters an Open vSwitch bridge, it becomes eligible for
3642 mirroring based on its ingress port and VLAN. As the packet travels
3643 through the flow tables, each time it is output to a port, it becomes
3644 eligible for mirroring based on the egress port and VLAN. In Open
3645 vSwitch 2.5 and later, mirroring occurs just after a packet first becomes
3646 eligible, using the packet as it exists at that point; in Open vSwitch
3647 2.4 and earlier, mirroring occurs only after a packet has traversed all
3648 the flow tables, using the original packet as it entered the bridge.
3649 This makes a difference only when the flow table modifies the packet: in
3650 Open vSwitch 2.4, the modifications are never visible to mirrors, whereas
3651 in Open vSwitch 2.5 and later modifications made before the first output
3652 that makes it eligible for mirroring to a particular destination are
3653 visible.
3654 </p>
3655
3656 <p>
3657 A packet that enters an Open vSwitch bridge is mirrored to a particular
3658 destination only once, even if it is eligible for multiple reasons. For
3659 example, a packet would be mirrored to a particular <ref
3660 column="output_port"/> only once, even if it is selected for mirroring to
3661 that port by <ref column="select_dst_port"/> and <ref
3662 column="select_src_port"/> in the same or different <ref table="Mirror"/>
3663 records.
3664 </p>
3665
89365653
BP
3666 <column name="name">
3667 Arbitrary identifier for the <ref table="Mirror"/>.
3668 </column>
3669
3670 <group title="Selecting Packets for Mirroring">
3e519d8e
BP
3671 <p>
3672 To be selected for mirroring, a given packet must enter or leave the
3673 bridge through a selected port and it must also be in one of the
3674 selected VLANs.
3675 </p>
3676
939ff267
BP
3677 <column name="select_all">
3678 If true, every packet arriving or departing on any port is
3679 selected for mirroring.
3680 </column>
3681
89365653
BP
3682 <column name="select_dst_port">
3683 Ports on which departing packets are selected for mirroring.
3684 </column>
3685
3686 <column name="select_src_port">
939ff267 3687 Ports on which arriving packets are selected for mirroring.
89365653
BP
3688 </column>
3689
3690 <column name="select_vlan">
3691 VLANs on which packets are selected for mirroring. An empty set
3692 selects packets on all VLANs.
3693 </column>
3694 </group>
3695
3696 <group title="Mirroring Destination Configuration">
3e519d8e
BP
3697 <p>
3698 These columns are mutually exclusive. Exactly one of them must be
3699 nonempty.
3700 </p>
3701
89365653 3702 <column name="output_port">
3e519d8e 3703 <p>Output port for selected packets, if nonempty.</p>
89365653 3704 <p>Specifying a port for mirror output reserves that port exclusively
92ada132 3705 for mirroring. No frames other than those selected for mirroring
653fe3a3 3706 via this column
92ada132
BP
3707 will be forwarded to the port, and any frames received on the port
3708 will be discarded.</p>
3709 <p>
3710 The output port may be any kind of port supported by Open vSwitch.
9ae7ddc0
JP
3711 It may be, for example, a physical port (sometimes called SPAN) or a
3712 GRE tunnel.
92ada132 3713 </p>
89365653
BP
3714 </column>
3715
3716 <column name="output_vlan">
3e519d8e 3717 <p>Output VLAN for selected packets, if nonempty.</p>
89365653 3718 <p>The frames will be sent out all ports that trunk
3fd8d445
BP
3719 <ref column="output_vlan"/>, as well as any ports with implicit VLAN
3720 <ref column="output_vlan"/>. When a mirrored frame is sent out a
3721 trunk port, the frame's VLAN tag will be set to
3722 <ref column="output_vlan"/>, replacing any existing tag; when it is
3723 sent out an implicit VLAN port, the frame will not be tagged. This
3724 type of mirroring is sometimes called RSPAN.</p>
07817dfe 3725 <p>
05be4e2c
EJ
3726 See the documentation for
3727 <ref column="other_config" key="forward-bpdu"/> in the
3728 <ref table="Interface"/> table for a list of destination MAC
3729 addresses which will not be mirrored to a VLAN to avoid confusing
3730 switches that interpret the protocols that they represent.
07817dfe 3731 </p>
89365653 3732 <p><em>Please note:</em> Mirroring to a VLAN can disrupt a network that
3fd8d445
BP
3733 contains unmanaged switches. Consider an unmanaged physical switch
3734 with two ports: port 1, connected to an end host, and port 2,
3735 connected to an Open vSwitch configured to mirror received packets
3736 into VLAN 123 on port 2. Suppose that the end host sends a packet on
3737 port 1 that the physical switch forwards to port 2. The Open vSwitch
3738 forwards this packet to its destination and then reflects it back on
3739 port 2 in VLAN 123. This reflected packet causes the unmanaged
3740 physical switch to replace the MAC learning table entry, which
3741 correctly pointed to port 1, with one that incorrectly points to port
3742 2. Afterward, the physical switch will direct packets destined for
3743 the end host to the Open vSwitch on port 2, instead of to the end
3744 host on port 1, disrupting connectivity. If mirroring to a VLAN is
3745 desired in this scenario, then the physical switch must be replaced
3746 by one that learns Ethernet addresses on a per-VLAN basis. In
3747 addition, learning should be disabled on the VLAN containing mirrored
3748 traffic. If this is not done then intermediate switches will learn
3749 the MAC address of each end host from the mirrored traffic. If
3750 packets being sent to that end host are also mirrored, then they will
3751 be dropped since the switch will attempt to send them out the input
3752 port. Disabling learning for the VLAN will cause the switch to
3753 correctly send the packet out all ports configured for that VLAN. If
3754 Open vSwitch is being used as an intermediate switch, learning can be
3755 disabled by adding the mirrored VLAN to <ref column="flood_vlans"/>
3756 in the appropriate <ref table="Bridge"/> table or tables.</p>
3757 <p>
3758 Mirroring to a GRE tunnel has fewer caveats than mirroring to a
3759 VLAN and should generally be preferred.
3760 </p>
89365653 3761 </column>
1356dbd1
WT
3762
3763 <column name="snaplen">
3764 <p>Maximum per-packet number of bytes to mirror.</p>
3765 <p>A mirrored packet with size larger than <ref column="snaplen"/>
3766 will be truncated in datapath to <ref column="snaplen"/> bytes
3767 before sending to the mirror output port. If omitted, packets
3768 are not truncated.
3769 </p>
3770 </column>
89365653 3771 </group>
13008eb3 3772
9d24de3b
JP
3773 <group title="Statistics: Mirror counters">
3774 <p>
12eb035b
AW
3775 Key-value pairs that report mirror statistics. The update period
3776 is controlled by <ref column="other_config"
3777 key="stats-update-interval"/> in the <code>Open_vSwitch</code> table.
9d24de3b
JP
3778 </p>
3779 <column name="statistics" key="tx_packets">
3780 Number of packets transmitted through this mirror.
3781 </column>
3782 <column name="statistics" key="tx_bytes">
3783 Number of bytes transmitted through this mirror.
3784 </column>
3785 </group>
3786
3fd8d445
BP
3787 <group title="Common Columns">
3788 The overall purpose of these columns is described under <code>Common
3789 Columns</code> at the beginning of this document.
3790
3791 <column name="external_ids"/>
13008eb3 3792 </group>
89365653
BP
3793 </table>
3794
3795 <table name="Controller" title="OpenFlow controller configuration.">
76ce9432
BP
3796 <p>An OpenFlow controller.</p>
3797
7d674866
BP
3798 <p>
3799 Open vSwitch supports two kinds of OpenFlow controllers:
3800 </p>
299a244b 3801
7d674866
BP
3802 <dl>
3803 <dt>Primary controllers</dt>
3804 <dd>
3805 <p>
3806 This is the kind of controller envisioned by the OpenFlow 1.0
3807 specification. Usually, a primary controller implements a network
3808 policy by taking charge of the switch's flow table.
3809 </p>
3810
3811 <p>
3812 Open vSwitch initiates and maintains persistent connections to
3813 primary controllers, retrying the connection each time it fails or
3814 drops. The <ref table="Bridge" column="fail_mode"/> column in the
3815 <ref table="Bridge"/> table applies to primary controllers.
3816 </p>
3817
3818 <p>
3819 Open vSwitch permits a bridge to have any number of primary
3820 controllers. When multiple controllers are configured, Open
3821 vSwitch connects to all of them simultaneously. Because
3822 OpenFlow 1.0 does not specify how multiple controllers
3823 coordinate in interacting with a single switch, more than
3824 one primary controller should be specified only if the
3825 controllers are themselves designed to coordinate with each
3826 other. (The Nicira-defined <code>NXT_ROLE</code> OpenFlow
3827 vendor extension may be useful for this.)
3828 </p>
3829 </dd>
3830 <dt>Service controllers</dt>
3831 <dd>
3832 <p>
3833 These kinds of OpenFlow controller connections are intended for
3834 occasional support and maintenance use, e.g. with
3835 <code>ovs-ofctl</code>. Usually a service controller connects only
3836 briefly to inspect or modify some of a switch's state.
3837 </p>
3838
3839 <p>
3840 Open vSwitch listens for incoming connections from service
3841 controllers. The service controllers initiate and, if necessary,
3842 maintain the connections from their end. The <ref table="Bridge"
3843 column="fail_mode"/> column in the <ref table="Bridge"/> table does
3844 not apply to service controllers.
3845 </p>
3846
3847 <p>
3848 Open vSwitch supports configuring any number of service controllers.
3849 </p>
3850 </dd>
3851 </dl>
3852
3853 <p>
3854 The <ref column="target"/> determines the type of controller.
3855 </p>
89365653
BP
3856
3857 <group title="Core Features">
3858 <column name="target">
7d674866
BP
3859 <p>Connection method for controller.</p>
3860 <p>
3861 The following connection methods are currently supported for primary
3862 controllers:
3863 </p>
89365653
BP
3864 <dl>
3865 <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
3866 <dd>
125b0291
JP
3867 <p>The specified SSL <var>port</var> on the host at the
3868 given <var>ip</var>, which must be expressed as an IP
3869 address (not a DNS name). The <ref table="Open_vSwitch"
3870 column="ssl"/> column in the <ref table="Open_vSwitch"/>
3871 table must point to a valid SSL configuration when this form
3872 is used.</p>
d4763d1d 3873 <p>If <var>port</var> is not specified, it defaults to 6653.</p>
89365653 3874 <p>SSL support is an optional feature that is not always built as
3fd8d445 3875 part of Open vSwitch.</p>
89365653
BP
3876 </dd>
3877 <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
125b0291 3878 <dd>
e731d71b
AS
3879 <p>
3880 The specified TCP <var>port</var> on the host at the given
3881 <var>ip</var>, which must be expressed as an IP address (not a
3882 DNS name), where <var>ip</var> can be IPv4 or IPv6 address. If
3883 <var>ip</var> is an IPv6 address, wrap it in square brackets,
d4763d1d 3884 e.g. <code>tcp:[::1]:6653</code>.
e731d71b
AS
3885 </p>
3886 <p>
d4763d1d 3887 If <var>port</var> is not specified, it defaults to 6653.
e731d71b 3888 </p>
125b0291 3889 </dd>
7d674866
BP
3890 </dl>
3891 <p>
3892 The following connection methods are currently supported for service
3893 controllers:
3894 </p>
3895 <dl>
3896 <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
3897 <dd>
e731d71b
AS
3898 <p>
3899 Listens for SSL connections on the specified TCP <var>port</var>.
3900 If <var>ip</var>, which must be expressed as an IP address (not a
3901 DNS name), is specified, then connections are restricted to the
3902 specified local IP address (either IPv4 or IPv6). If
3903 <var>ip</var> is an IPv6 address, wrap it in square brackets,
d4763d1d 3904 e.g. <code>pssl:6653:[::1]</code>.
e731d71b
AS
3905 </p>
3906 <p>
d4763d1d
JP
3907 If <var>port</var> is not specified, it defaults to
3908 6653. If <var>ip</var> is not specified then it listens only on
e731d71b
AS
3909 IPv4 (but not IPv6) addresses. The
3910 <ref table="Open_vSwitch" column="ssl"/>
3911 column in the <ref table="Open_vSwitch"/> table must point to a
3912 valid SSL configuration when this form is used.
3913 </p>
3914 <p>
d4763d1d 3915 If <var>port</var> is not specified, it currently to 6653.
e731d71b
AS
3916 </p>
3917 <p>
3918 SSL support is an optional feature that is not always built as
3919 part of Open vSwitch.
3920 </p>
7d674866
BP
3921 </dd>
3922 <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
3923 <dd>
e731d71b
AS
3924 <p>
3925 Listens for connections on the specified TCP <var>port</var>. If
3926 <var>ip</var>, which must be expressed as an IP address (not a
3927 DNS name), is specified, then connections are restricted to the
3928 specified local IP address (either IPv4 or IPv6). If
3929 <var>ip</var> is an IPv6 address, wrap it in square brackets,
d4763d1d 3930 e.g. <code>ptcp:6653:[::1]</code>. If <var>ip</var> is not
e731d71b
AS
3931 specified then it listens only on IPv4 addresses.
3932 </p>
3933 <p>
d4763d1d 3934 If <var>port</var> is not specified, it defaults to 6653.
e731d71b 3935 </p>
7d674866 3936 </dd>
89365653 3937 </dl>
9a3f4a49 3938 <p>When multiple controllers are configured for a single bridge, the
3fd8d445
BP
3939 <ref column="target"/> values must be unique. Duplicate
3940 <ref column="target"/> values yield unspecified results.</p>
89365653
BP
3941 </column>
3942
3943 <column name="connection_mode">
9a3f4a49
JP
3944 <p>If it is specified, this setting must be one of the following
3945 strings that describes how Open vSwitch contacts this OpenFlow
3946 controller over the network:</p>
3947
3948 <dl>
3949 <dt><code>in-band</code></dt>
3950 <dd>In this mode, this controller's OpenFlow traffic travels over the
3fd8d445
BP
3951 bridge associated with the controller. With this setting, Open
3952 vSwitch allows traffic to and from the controller regardless of the
3953 contents of the OpenFlow flow table. (Otherwise, Open vSwitch
3954 would never be able to connect to the controller, because it did
3955 not have a flow to enable it.) This is the most common connection
3956 mode because it is not necessary to maintain two independent
3957 networks.</dd>
9a3f4a49
JP
3958 <dt><code>out-of-band</code></dt>
3959 <dd>In this mode, OpenFlow traffic uses a control network separate
3fd8d445
BP
3960 from the bridge associated with this controller, that is, the
3961 bridge does not use any of its own network devices to communicate
3962 with the controller. The control network must be configured
3963 separately, before or after <code>ovs-vswitchd</code> is started.
9a3f4a49
JP
3964 </dd>
3965 </dl>
76ce9432 3966
195c8086 3967 <p>If not specified, the default is implementation-specific.</p>
89365653
BP
3968 </column>
3969 </group>
3970
3971 <group title="Controller Failure Detection and Handling">
3972 <column name="max_backoff">
3973 Maximum number of milliseconds to wait between connection attempts.
3974 Default is implementation-specific.
3975 </column>
3976
3977 <column name="inactivity_probe">
3978 Maximum number of milliseconds of idle time on connection to
3979 controller before sending an inactivity probe message. If Open
3980 vSwitch does not communicate with the controller for the specified
3981 number of seconds, it will send a probe. If a response is not
3982 received for the same additional amount of time, Open vSwitch
3983 assumes the connection has been broken and attempts to reconnect.
2bb82bf0
BP
3984 Default is implementation-specific. A value of 0 disables
3985 inactivity probes.
89365653 3986 </column>
89365653
BP
3987 </group>
3988
a413195e 3989 <group title="Asynchronous Messages">
9886b662
BP
3990 <p>
3991 OpenFlow switches send certain messages to controllers spontanenously,
3992 that is, not in response to any request from the controller. These
3993 messages are called ``asynchronous messages.'' These columns allow
3994 asynchronous messages to be limited or disabled to ensure the best use
3995 of network resources.
3996 </p>
3997
3998 <column name="enable_async_messages">
3999 The OpenFlow protocol enables asynchronous messages at time of
4000 connection establishment, which means that a controller can receive
4001 asynchronous messages, potentially many of them, even if it turns them
4002 off immediately after connecting. Set this column to
4003 <code>false</code> to change Open vSwitch behavior to disable, by
4004 default, all asynchronous messages. The controller can use the
4005 <code>NXT_SET_ASYNC_CONFIG</code> Nicira extension to OpenFlow to turn
4006 on any messages that it does want to receive, if any.
4007 </column>
4008
a413195e 4009 <group title="Controller Rate Limiting">
ebb65354 4010 <p>
a413195e
BP
4011 A switch can forward packets to a controller over the OpenFlow
4012 protocol. Forwarding packets this way at too high a rate can
4013 overwhelm a controller, frustrate use of the OpenFlow connection for
4014 other purposes, increase the latency of flow setup, and use an
4015 unreasonable amount of bandwidth. Therefore, Open vSwitch supports
4016 limiting the rate of packet forwarding to a controller.
ebb65354
BP
4017 </p>
4018
4019 <p>
a413195e
BP
4020 There are two main reasons in OpenFlow for a packet to be sent to a
4021 controller: either the packet ``misses'' in the flow table, that is,
4022 there is no matching flow, or a flow table action says to send the
4023 packet to the controller. Open vSwitch limits the rate of each kind
4024 of packet separately at the configured rate. Therefore, the actual
4025 rate that packets are sent to the controller can be up to twice the
4026 configured rate, when packets are sent for both reasons.
ebb65354
BP
4027 </p>
4028
4029 <p>
a413195e
BP
4030 This feature is specific to forwarding packets over an OpenFlow
4031 connection. It is not general-purpose QoS. See the <ref
4032 table="QoS"/> table for quality of service configuration, and <ref
4033 column="ingress_policing_rate" table="Interface"/> in the <ref
4034 table="Interface"/> table for ingress policing configuration.
ebb65354 4035 </p>
3fd8d445 4036
a413195e
BP
4037 <column name="controller_rate_limit">
4038 <p>
4039 The maximum rate at which the switch will forward packets to the
4040 OpenFlow controller, in packets per second. If no value is
4041 specified, rate limiting is disabled.
4042 </p>
4043 </column>
4044
4045 <column name="controller_burst_limit">
4046 <p>
4047 When a high rate triggers rate-limiting, Open vSwitch queues
4048 packets to the controller for each port and transmits them to the
4049 controller at the configured rate. This value limits the number of
4050 queued packets. Ports on a bridge share the packet queue fairly.
4051 </p>
4052
4053 <p>
4054 This value has no effect unless <ref
4055 column="controller_rate_limit"/> is configured. The current
4056 default when this value is not specified is one-quarter of <ref
4057 column="controller_rate_limit"/>, meaning that queuing can delay
4058 forwarding a packet to the controller by up to 250 ms.
4059 </p>
4060 </column>
4061
4062 <group title="Controller Rate Limiting Statistics">
4063 <p>
4064 These values report the effects of rate limiting. Their values are
4065 relative to establishment of the most recent OpenFlow connection,
4066 or since rate limiting was enabled, whichever happened more
4067 recently. Each consists of two values, one with <code>TYPE</code>
4068 replaced by <code>miss</code> for rate limiting flow table misses,
4069 and the other with <code>TYPE</code> replaced by
4070 <code>action</code> for rate limiting packets sent by OpenFlow
4071 actions.
4072 </p>
4073
4074 <p>
4075 These statistics are reported only when controller rate limiting is
4076 enabled.
4077 </p>
4078
4079 <column name="status" key="packet-in-TYPE-bypassed"
4080 type='{"type": "integer", "minInteger": 0}'>
4081 Number of packets sent directly to the controller, without queuing,
4082 because the rate did not exceed the configured maximum.
4083 </column>
4084
4085 <column name="status" key="packet-in-TYPE-queued"
4086 type='{"type": "integer", "minInteger": 0}'>
4087 Number of packets added to the queue to send later.
4088 </column>
4089
4090 <column name="status" key="packet-in-TYPE-dropped"
4091 type='{"type": "integer", "minInteger": 0}'>
4092 Number of packets added to the queue that were later dropped due to
4093 overflow. This value is less than or equal to <ref column="status"
4094 key="packet-in-TYPE-queued"/>.
4095 </column>
4096
4097 <column name="status" key="packet-in-TYPE-backlog"
4098 type='{"type": "integer", "minInteger": 0}'>
4099 Number of packets currently queued. The other statistics increase
4100 monotonically, but this one fluctuates between 0 and the <ref
4101 column="controller_burst_limit"/> as conditions change.
4102 </column>
4103 </group>
4104 </group>
89365653
BP
4105 </group>
4106
76ce9432
BP
4107 <group title="Additional In-Band Configuration">
4108 <p>These values are considered only in in-band control mode (see
3fd8d445 4109 <ref column="connection_mode"/>).</p>
76ce9432
BP
4110
4111 <p>When multiple controllers are configured on a single bridge, there
3fd8d445
BP
4112 should be only one set of unique values in these columns. If different
4113 values are set for these columns in different controllers, the effect
4114 is unspecified.</p>
89365653
BP
4115
4116 <column name="local_ip">
76ce9432
BP
4117 The IP address to configure on the local port,
4118 e.g. <code>192.168.0.123</code>. If this value is unset, then
4119 <ref column="local_netmask"/> and <ref column="local_gateway"/> are
4120 ignored.
89365653
BP
4121 </column>
4122
4123 <column name="local_netmask">
76ce9432
BP
4124 The IP netmask to configure on the local port,
4125 e.g. <code>255.255.255.0</code>. If <ref column="local_ip"/> is set
4126 but this value is unset, then the default is chosen based on whether
4127 the IP address is class A, B, or C.
4128 </column>
4129
4130 <column name="local_gateway">
4131 The IP address of the gateway to configure on the local port, as a
4132 string, e.g. <code>192.168.0.1</code>. Leave this column unset if
4133 this network has no gateway.
89365653
BP
4134 </column>
4135 </group>
13008eb3 4136
bffc0589
AE
4137 <group title="Controller Status">
4138 <column name="is_connected">
4139 <code>true</code> if currently connected to this controller,
4140 <code>false</code> otherwise.
4141 </column>
4142
f9e5e5b3
BP
4143 <column name="role"
4144 type='{"type": "string", "enum": ["set", ["other", "master", "slave"]]}'>
bffc0589 4145 <p>The level of authority this controller has on the associated
3fd8d445 4146 bridge. Possible values are:</p>
bffc0589
AE
4147 <dl>
4148 <dt><code>other</code></dt>
4149 <dd>Allows the controller access to all OpenFlow features.</dd>
bffc0589
AE
4150 <dt><code>master</code></dt>
4151 <dd>Equivalent to <code>other</code>, except that there may be at
3fd8d445
BP
4152 most one master controller at a time. When a controller configures
4153 itself as <code>master</code>, any existing master is demoted to
9f90ed90 4154 the <code>slave</code> role.</dd>
bffc0589
AE
4155 <dt><code>slave</code></dt>
4156 <dd>Allows the controller read-only access to OpenFlow features.
3fd8d445
BP
4157 Attempts to modify the flow table will be rejected with an
4158 error. Slave controllers do not receive OFPT_PACKET_IN or
4159 OFPT_FLOW_REMOVED messages, but they do receive OFPT_PORT_STATUS
4160 messages.</dd>
bffc0589
AE
4161 </dl>
4162 </column>
4163
3fd8d445
BP
4164 <column name="status" key="last_error">
4165 A human-readable description of the last error on the connection
4166 to the controller; i.e. <code>strerror(errno)</code>. This key
4167 will exist only if an error has occurred.
4168 </column>
4169
f9e5e5b3
BP
4170 <column name="status" key="state"
4171 type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
3fd8d445 4172 <p>
f9e5e5b3 4173 The state of the connection to the controller:
3fd8d445 4174 </p>
bffc0589 4175 <dl>
3fd8d445
BP
4176 <dt><code>VOID</code></dt>
4177 <dd>Connection is disabled.</dd>
4178
4179 <dt><code>BACKOFF</code></dt>
4180 <dd>Attempting to reconnect at an increasing period.</dd>
4181
4182 <dt><code>CONNECTING</code></dt>
4183 <dd>Attempting to connect.</dd>
4184
4185 <dt><code>ACTIVE</code></dt>
4186 <dd>Connected, remote host responsive.</dd>
4187
4188 <dt><code>IDLE</code></dt>
4189 <dd>Connection is idle. Waiting for response to keep-alive.</dd>
bffc0589 4190 </dl>
3fd8d445
BP
4191 <p>
4192 These values may change in the future. They are provided only for
4193 human consumption.
4194 </p>
4195 </column>
9cc6bf75 4196
f9e5e5b3
BP
4197 <column name="status" key="sec_since_connect"
4198 type='{"type": "integer", "minInteger": 0}'>
3fd8d445
BP
4199 The amount of time since this controller last successfully connected to
4200 the switch (in seconds). Value is empty if controller has never
4201 successfully connected.
bffc0589 4202 </column>
9cc6bf75 4203
f9e5e5b3
BP
4204 <column name="status" key="sec_since_disconnect"
4205 type='{"type": "integer", "minInteger": 1}'>
3fd8d445
BP
4206 The amount of time since this controller last disconnected from
4207 the switch (in seconds). Value is empty if controller has never
4208 disconnected.
4209 </column>
4210 </group>
4211
f125905c
MM
4212 <group title="Connection Parameters">
4213 <p>
4214 Additional configuration for a connection between the controller
4215 and the Open vSwitch.
4216 </p>
4217
4218 <column name="other_config" key="dscp"
039a8ccd 4219 type='{"type": "integer"}'>
cea15768
EJ
4220 The Differentiated Service Code Point (DSCP) is specified using 6 bits
4221 in the Type of Service (TOS) field in the IP header. DSCP provides a
4222 mechanism to classify the network traffic and provide Quality of
4223 Service (QoS) on IP networks.
4224
4225 The DSCP value specified here is used when establishing the connection
0442efd9
MM
4226 between the controller and the Open vSwitch. If no value is specified,
4227 a default value of 48 is chosen. Valid DSCP values must be in the
4228 range 0 to 63.
f125905c
MM
4229 </column>
4230 </group>
4231
4232
3fd8d445
BP
4233 <group title="Common Columns">
4234 The overall purpose of these columns is described under <code>Common
4235 Columns</code> at the beginning of this document.
4236
4237 <column name="external_ids"/>
f125905c 4238 <column name="other_config"/>
bffc0589 4239 </group>
89365653
BP
4240 </table>
4241
94db5407
BP
4242 <table name="Manager" title="OVSDB management connection.">
4243 <p>
4244 Configuration for a database connection to an Open vSwitch database
4245 (OVSDB) client.
4246 </p>
4247
4248 <p>
4249 This table primarily configures the Open vSwitch database
4250 (<code>ovsdb-server</code>), not the Open vSwitch switch
4251 (<code>ovs-vswitchd</code>). The switch does read the table to determine
4252 what connections should be treated as in-band.
4253 </p>
4254
4255 <p>
4256 The Open vSwitch database server can initiate and maintain active
4257 connections to remote clients. It can also listen for database
4258 connections.
4259 </p>
4260
4261 <group title="Core Features">
4262 <column name="target">
4263 <p>Connection method for managers.</p>
4264 <p>
4265 The following connection methods are currently supported:
4266 </p>
4267 <dl>
4268 <dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
4269 <dd>
4270 <p>
efc295d2
JP
4271 The specified SSL <var>port</var> on the host at the given
4272 <var>ip</var>, which must be expressed as an IP address
4273 (not a DNS name). The <ref table="Open_vSwitch"
4274 column="ssl"/> column in the <ref table="Open_vSwitch"/>
4275 table must point to a valid SSL configuration when this
4276 form is used.
94db5407
BP
4277 </p>
4278 <p>
d4763d1d 4279 If <var>port</var> is not specified, it defaults to 6640.
efc295d2
JP
4280 </p>
4281 <p>
4282 SSL support is an optional feature that is not always
4283 built as part of Open vSwitch.
94db5407
BP
4284 </p>
4285 </dd>
4286
4287 <dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
4288 <dd>
efc295d2
JP
4289 <p>
4290 The specified TCP <var>port</var> on the host at the given
e731d71b
AS
4291 <var>ip</var>, which must be expressed as an IP address (not a
4292 DNS name), where <var>ip</var> can be IPv4 or IPv6 address. If
4293 <var>ip</var> is an IPv6 address, wrap it in square brackets,
d4763d1d 4294 e.g. <code>tcp:[::1]:6640</code>.
efc295d2
JP
4295 </p>
4296 <p>
d4763d1d 4297 If <var>port</var> is not specified, it defaults to 6640.
efc295d2 4298 </p>
94db5407
BP
4299 </dd>
4300 <dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
4301 <dd>
4302 <p>
e731d71b
AS
4303 Listens for SSL connections on the specified TCP <var>port</var>.
4304 Specify 0 for <var>port</var> to have the kernel automatically
4305 choose an available port. If <var>ip</var>, which must be
4306 expressed as an IP address (not a DNS name), is specified, then
4307 connections are restricted to the specified local IP address
4308 (either IPv4 or IPv6 address). If <var>ip</var> is an IPv6
4309 address, wrap in square brackets,
d4763d1d 4310 e.g. <code>pssl:6640:[::1]</code>. If <var>ip</var> is not
e731d71b
AS
4311 specified then it listens only on IPv4 (but not IPv6) addresses.
4312 The <ref table="Open_vSwitch" column="ssl"/> column in the <ref
94db5407
BP
4313 table="Open_vSwitch"/> table must point to a valid SSL
4314 configuration when this form is used.
4315 </p>
efc295d2 4316 <p>
d4763d1d 4317 If <var>port</var> is not specified, it defaults to 6640.
efc295d2 4318 </p>
94db5407
BP
4319 <p>
4320 SSL support is an optional feature that is not always built as
4321 part of Open vSwitch.
4322 </p>
4323 </dd>
4324 <dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
4325 <dd>
efc295d2 4326 <p>
e731d71b
AS
4327 Listens for connections on the specified TCP <var>port</var>.
4328 Specify 0 for <var>port</var> to have the kernel automatically
4329 choose an available port. If <var>ip</var>, which must be
4330 expressed as an IP address (not a DNS name), is specified, then
4331 connections are restricted to the specified local IP address
4332 (either IPv4 or IPv6 address). If <var>ip</var> is an IPv6
4333 address, wrap it in square brackets,
d4763d1d 4334 e.g. <code>ptcp:6640:[::1]</code>. If <var>ip</var> is not
e731d71b 4335 specified then it listens only on IPv4 addresses.
efc295d2
JP
4336 </p>
4337 <p>
d4763d1d 4338 If <var>port</var> is not specified, it defaults to 6640.
efc295d2 4339 </p>
94db5407
BP
4340 </dd>
4341 </dl>
4342 <p>When multiple managers are configured, the <ref column="target"/>
4343 values must be unique. Duplicate <ref column="target"/> values yield
4344 unspecified results.</p>
4345 </column>
4346
4347 <column name="connection_mode">
4348 <p>
4349 If it is specified, this setting must be one of the following strings
4350 that describes how Open vSwitch contacts this OVSDB client over the
4351 network:
4352 </p>
299a244b 4353
94db5407
BP
4354 <dl>
4355 <dt><code>in-band</code></dt>
4356 <dd>
4357 In this mode, this connection's traffic travels over a bridge
4358 managed by Open vSwitch. With this setting, Open vSwitch allows
4359 traffic to and from the client regardless of the contents of the
4360 OpenFlow flow table. (Otherwise, Open vSwitch would never be able
4361 to connect to the client, because it did not have a flow to enable
4362 it.) This is the most common connection mode because it is not
4363 necessary to maintain two independent networks.
4364 </dd>
4365 <dt><code>out-of-band</code></dt>
4366 <dd>
4367 In this mode, the client's traffic uses a control network separate
4368 from that managed by Open vSwitch, that is, Open vSwitch does not
4369 use any of its own network devices to communicate with the client.
4370 The control network must be configured separately, before or after
4371 <code>ovs-vswitchd</code> is started.
4372 </dd>
4373 </dl>
4374
4375 <p>
4376 If not specified, the default is implementation-specific.
4377 </p>
4378 </column>
4379 </group>
4380
4381 <group title="Client Failure Detection and Handling">
4382 <column name="max_backoff">
4383 Maximum number of milliseconds to wait between connection attempts.
4384 Default is implementation-specific.
4385 </column>
4386
4387 <column name="inactivity_probe">
4388 Maximum number of milliseconds of idle time on connection to the client
4389 before sending an inactivity probe message. If Open vSwitch does not
4390 communicate with the client for the specified number of seconds, it
4391 will send a probe. If a response is not received for the same
4392 additional amount of time, Open vSwitch assumes the connection has been
4393 broken and attempts to reconnect. Default is implementation-specific.
2bb82bf0 4394 A value of 0 disables inactivity probes.
94db5407
BP
4395 </column>
4396 </group>
4397
0b3e7a8b 4398 <group title="Status">
600766e8
AZ
4399 <p>
4400 Key-value pair of <ref column="is_connected"/> is always updated.
4401 Other key-value pairs in the status columns may be updated depends
4402 on the <ref column="target"/> type.
4403 </p>
4404
4405 <p>
4406 When <ref column="target"/> specifies a connection method that
4407 listens for inbound connections (e.g. <code>ptcp:</code> or
4408 <code>punix:</code>), both <ref column="n_connections"/> and
4409 <ref column="is_connected"/> may also be updated while the
4410 remaining key-value pairs are omitted.
4411 </p>
4412
4413 <p>
4414 On the other hand, when <ref column="target"/> specifies an
4415 outbound connection, all key-value pairs may be updated, except
4416 the above-mentioned two key-value pairs associated with inbound
4417 connection targets. They are omitted.
4418 </p>
4419
4420 <column name="is_connected">
0b3e7a8b
AE
4421 <code>true</code> if currently connected to this manager,
4422 <code>false</code> otherwise.
4423 </column>
4424
3fd8d445
BP
4425 <column name="status" key="last_error">
4426 A human-readable description of the last error on the connection
4427 to the manager; i.e. <code>strerror(errno)</code>. This key
4428 will exist only if an error has occurred.
4429 </column>
4430
f9e5e5b3
BP
4431 <column name="status" key="state"
4432 type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
3fd8d445 4433 <p>
f9e5e5b3 4434 The state of the connection to the manager:
3fd8d445 4435 </p>
a11f6164 4436 <dl>
3fd8d445
BP
4437 <dt><code>VOID</code></dt>
4438 <dd>Connection is disabled.</dd>
4439
4440 <dt><code>BACKOFF</code></dt>
4441 <dd>Attempting to reconnect at an increasing period.</dd>
4442
4443 <dt><code>CONNECTING</code></dt>
4444 <dd>Attempting to connect.</dd>
4445
4446 <dt><code>ACTIVE</code></dt>
4447 <dd>Connected, remote host responsive.</dd>
4448
4449 <dt><code>IDLE</code></dt>
4450 <dd>Connection is idle. Waiting for response to keep-alive.</dd>
a11f6164 4451 </dl>
3fd8d445
BP
4452 <p>
4453 These values may change in the future. They are provided only for
4454 human consumption.
4455 </p>
4456 </column>
4457
f9e5e5b3
BP
4458 <column name="status" key="sec_since_connect"
4459 type='{"type": "integer", "minInteger": 0}'>
3fd8d445
BP
4460 The amount of time since this manager last successfully connected
4461 to the database (in seconds). Value is empty if manager has never
4462 successfully connected.
4463 </column>
4464
f9e5e5b3
BP
4465 <column name="status" key="sec_since_disconnect"
4466 type='{"type": "integer", "minInteger": 0}'>
3fd8d445
BP
4467 The amount of time since this manager last disconnected from the
4468 database (in seconds). Value is empty if manager has never
4469 disconnected.
4470 </column>
4471
4472 <column name="status" key="locks_held">
4473 Space-separated list of the names of OVSDB locks that the connection
4474 holds. Omitted if the connection does not hold any locks.
4475 </column>
4476
4477 <column name="status" key="locks_waiting">
4478 Space-separated list of the names of OVSDB locks that the connection is
4479 currently waiting to acquire. Omitted if the connection is not waiting
4480 for any locks.
4481 </column>
4482
4483 <column name="status" key="locks_lost">
4484 Space-separated list of the names of OVSDB locks that the connection
4485 has had stolen by another OVSDB client. Omitted if no locks have been
4486 stolen from this connection.
4487 </column>
4488
f9e5e5b3
BP
4489 <column name="status" key="n_connections"
4490 type='{"type": "integer", "minInteger": 2}'>
600766e8
AZ
4491 When <ref column="target"/> specifies a connection method that
4492 listens for inbound connections (e.g. <code>ptcp:</code> or
4493 <code>pssl:</code>) and more than one connection is actually active,
4494 the value is the number of active connections. Otherwise, this
4495 key-value pair is omitted.
0b3e7a8b 4496 </column>
798e1352
BP
4497
4498 <column name="status" key="bound_port" type='{"type": "integer"}'>
039a8ccd
BP
4499 When <ref column="target"/> is <code>ptcp:</code> or
4500 <code>pssl:</code>, this is the TCP port on which the OVSDB server is
6c75e208 4501 listening. (This is particularly useful when <ref
039a8ccd
BP
4502 column="target"/> specifies a port of 0, allowing the kernel to
4503 choose any available port.)
798e1352 4504 </column>
0b3e7a8b 4505 </group>
3fd8d445 4506
f125905c
MM
4507 <group title="Connection Parameters">
4508 <p>
4509 Additional configuration for a connection between the manager
4510 and the Open vSwitch Database.
4511 </p>
4512
4513 <column name="other_config" key="dscp"
039a8ccd 4514 type='{"type": "integer"}'>
cea15768
EJ
4515 The Differentiated Service Code Point (DSCP) is specified using 6 bits
4516 in the Type of Service (TOS) field in the IP header. DSCP provides a
4517 mechanism to classify the network traffic and provide Quality of
4518 Service (QoS) on IP networks.
4519
4520 The DSCP value specified here is used when establishing the connection
0442efd9
MM
4521 between the manager and the Open vSwitch. If no value is specified, a
4522 default value of 48 is chosen. Valid DSCP values must be in the range
4523 0 to 63.
f125905c
MM
4524 </column>
4525 </group>
4526
3fd8d445
BP
4527 <group title="Common Columns">
4528 The overall purpose of these columns is described under <code>Common
4529 Columns</code> at the beginning of this document.
4530
4531 <column name="external_ids"/>
f125905c 4532 <column name="other_config"/>
3fd8d445 4533 </group>
94db5407
BP
4534 </table>
4535
89365653
BP
4536 <table name="NetFlow">
4537 A NetFlow target. NetFlow is a protocol that exports a number of
4538 details about terminating IP flows, such as the principals involved
4539 and duration.
4540
4541 <column name="targets">
4542 NetFlow targets in the form
4543 <code><var>ip</var>:<var>port</var></code>. The <var>ip</var>
4544 must be specified numerically, not as a DNS name.
4545 </column>
4546
4547 <column name="engine_id">
4548 Engine ID to use in NetFlow messages. Defaults to datapath index
4549 if not specified.
4550 </column>
4551
4552 <column name="engine_type">
4553 Engine type to use in NetFlow messages. Defaults to datapath
4554 index if not specified.
4555 </column>
4556
4557 <column name="active_timeout">
a70f8b11 4558 <p>
039a8ccd
BP
4559 The interval at which NetFlow records are sent for flows that
4560 are still active, in seconds. A value of <code>0</code>
4561 requests the default timeout (currently 600 seconds); a value
4562 of <code>-1</code> disables active timeouts.
a70f8b11
BP
4563 </p>
4564
4565 <p>
039a8ccd
BP
4566 The NetFlow passive timeout, for flows that become inactive,
4567 is not configurable. It will vary depending on the Open
4568 vSwitch version, the forms and contents of the OpenFlow flow
4569 tables, CPU and memory usage, and network activity. A typical
4570 passive timeout is about a second.
a70f8b11 4571 </p>
89365653
BP
4572 </column>
4573
4574 <column name="add_id_to_interface">
4575 <p>If this column's value is <code>false</code>, the ingress and egress
3fd8d445
BP
4576 interface fields of NetFlow flow records are derived from OpenFlow port
4577 numbers. When it is <code>true</code>, the 7 most significant bits of
4578 these fields will be replaced by the least significant 7 bits of the
4579 engine id. This is useful because many NetFlow collectors do not
4580 expect multiple switches to be sending messages from the same host, so
4581 they do not store the engine information which could be used to
4582 disambiguate the traffic.</p>
89365653
BP
4583 <p>When this option is enabled, a maximum of 508 ports are supported.</p>
4584 </column>
13008eb3 4585
3fd8d445
BP
4586 <group title="Common Columns">
4587 The overall purpose of these columns is described under <code>Common
4588 Columns</code> at the beginning of this document.
4589
4590 <column name="external_ids"/>
4591 </group>
89365653
BP
4592 </table>
4593
4594 <table name="SSL">
4595 SSL configuration for an Open_vSwitch.
4596
4597 <column name="private_key">
4598 Name of a PEM file containing the private key used as the switch's
4599 identity for SSL connections to the controller.
4600 </column>
4601
4602 <column name="certificate">
4603 Name of a PEM file containing a certificate, signed by the
4604 certificate authority (CA) used by the controller and manager,
4605 that certifies the switch's private key, identifying a trustworthy
4606 switch.
4607 </column>
4608
4609 <column name="ca_cert">
4610 Name of a PEM file containing the CA certificate used to verify
4611 that the switch is connected to a trustworthy controller.
4612 </column>
4613
4614 <column name="bootstrap_ca_cert">
4615 If set to <code>true</code>, then Open vSwitch will attempt to
4616 obtain the CA certificate from the controller on its first SSL
4617 connection and save it to the named PEM file. If it is successful,
4618 it will immediately drop the connection and reconnect, and from then
4619 on all SSL connections must be authenticated by a certificate signed
4620 by the CA certificate thus obtained. <em>This option exposes the
3fd8d445
BP
4621 SSL connection to a man-in-the-middle attack obtaining the initial
4622 CA certificate.</em> It may still be useful for bootstrapping.
89365653 4623 </column>
13008eb3 4624
3fd8d445
BP
4625 <group title="Common Columns">
4626 The overall purpose of these columns is described under <code>Common
4627 Columns</code> at the beginning of this document.
4628
4629 <column name="external_ids"/>
4630 </group>
89365653
BP
4631 </table>
4632
4633 <table name="sFlow">
29089a54
RL
4634 <p>A set of sFlow(R) targets. sFlow is a protocol for remote
4635 monitoring of switches.</p>
89365653
BP
4636
4637 <column name="agent">
e723ff43 4638 Name of the network device whose IP address should be reported as the
733adf2a
LG
4639 ``agent address'' to collectors. If not specified, the agent device is
4640 figured from the first target address and the routing table. If the
4641 routing table does not contain a route to the target, the IP address
e723ff43
BP
4642 defaults to the <ref table="Controller" column="local_ip"/> in the
4643 collector's <ref table="Controller"/>. If an agent IP address cannot be
733adf2a 4644 determined any of these ways, sFlow is disabled.
89365653
BP
4645 </column>
4646
4647 <column name="header">
4648 Number of bytes of a sampled packet to send to the collector.
4649 If not specified, the default is 128 bytes.
4650 </column>
4651
4652 <column name="polling">
4653 Polling rate in seconds to send port statistics to the collector.
4654 If not specified, defaults to 30 seconds.
4655 </column>
4656
4657 <column name="sampling">
4658 Rate at which packets should be sampled and sent to the collector.
4659 If not specified, defaults to 400, which means one out of 400
4660 packets, on average, will be sent to the collector.
4661 </column>
4662
4663 <column name="targets">
4664 sFlow targets in the form
4665 <code><var>ip</var>:<var>port</var></code>.
4666 </column>
13008eb3 4667
3fd8d445
BP
4668 <group title="Common Columns">
4669 The overall purpose of these columns is described under <code>Common
4670 Columns</code> at the beginning of this document.
4671
4672 <column name="external_ids"/>
4673 </group>
89365653 4674 </table>
c1c9c9c4 4675
29089a54 4676 <table name="IPFIX">
99ec8f05 4677 <p>Configuration for sending packets to IPFIX collectors.</p>
29089a54 4678
99ec8f05
BP
4679 <p>
4680 IPFIX is a protocol that exports a number of details about flows. The
4681 IPFIX implementation in Open vSwitch samples packets at a configurable
4682 rate, extracts flow information from those packets, optionally caches and
4683 aggregates the flow information, and sends the result to one or more
4684 collectors.
4685 </p>
29089a54 4686
99ec8f05
BP
4687 <p>
4688 IPFIX in Open vSwitch can be configured two different ways:
4689 </p>
29089a54 4690
99ec8f05
BP
4691 <ul>
4692 <li>
4693 With <em>per-bridge sampling</em>, Open vSwitch performs IPFIX sampling
4694 automatically on all packets that pass through a bridge. To configure
4695 per-bridge sampling, create an <ref table="IPFIX"/> record and point a
4696 <ref table="Bridge"/> table's <ref table="Bridge" column="ipfix"/>
4697 column to it. The <ref table="Flow_Sample_Collector_Set"/> table is
4698 not used for per-bridge sampling.
4699 </li>
4700
4701 <li>
4702 <p>
4703 With <em>flow-based sampling</em>, <code>sample</code> actions in the
4704 OpenFlow flow table drive IPFIX sampling. See
4705 <code>ovs-ofctl</code>(8) for a description of the
4706 <code>sample</code> action.
4707 </p>
4708
4709 <p>
4710 Flow-based sampling also requires database configuration: create a
4711 <ref table="IPFIX"/> record that describes the IPFIX configuration
4712 and a <ref table="Flow_Sample_Collector_Set"/> record that points to
4713 the <ref table="Bridge"/> whose flow table holds the
4714 <code>sample</code> actions and to <ref table="IPFIX"/> record. The
4715 <ref table="Bridge" column="ipfix"/> in the <ref table="Bridge"/>
4716 table is not used for flow-based sampling.
4717 </p>
4718 </li>
4719 </ul>
29089a54 4720
99ec8f05
BP
4721 <column name="targets">
4722 IPFIX target collectors in the form
4723 <code><var>ip</var>:<var>port</var></code>.
29089a54
RL
4724 </column>
4725
978427a5
RL
4726 <column name="cache_active_timeout">
4727 The maximum period in seconds for which an IPFIX flow record is
4728 cached and aggregated before being sent. If not specified,
4729 defaults to 0. If 0, caching is disabled.
4730 </column>
4731
4732 <column name="cache_max_flows">
4733 The maximum number of IPFIX flow records that can be cached at a
4734 time. If not specified, defaults to 0. If 0, caching is
4735 disabled.
4736 </column>
4737
f69f713b
BY
4738 <column name="other_config" key="enable-tunnel-sampling"
4739 type='{"type": "boolean"}'>
4740 <p>
4741 Set to <code>true</code> to enable sampling and reporting tunnel
4742 header 7-tuples in IPFIX flow records. Tunnel sampling is enabled
4743 by default.
4744 </p>
4745
4746 <p>
4747 The following enterprise entities report the sampled tunnel info:
4748 </p>
4749
4750 <dl>
4751 <dt>tunnelType:</dt>
4752 <dd>
4753 <p>ID: 891, and enterprise ID 6876 (VMware).</p>
4754 <p>type: unsigned 8-bit integer.</p>
4755 <p>data type semantics: identifier.</p>
4756 <p>description: Identifier of the layer 2 network overlay network
4757 encapsulation type: 0x01 VxLAN, 0x02 GRE, 0x03 LISP, 0x05 IPsec+GRE,
4758 0x07 GENEVE.</p>
4759 </dd>
4760 <dt>tunnelKey:</dt>
4761 <dd>
4762 <p>ID: 892, and enterprise ID 6876 (VMware).</p>
4763 <p>type: variable-length octetarray.</p>
4764 <p>data type semantics: identifier.</p>
4765 <p>description: Key which is used for identifying an individual
4766 traffic flow within a VxLAN (24-bit VNI), GENEVE (24-bit VNI),
4767 GRE (32-bit key), or LISP (24-bit instance ID) tunnel. The
4768 key is encoded in this octetarray as a 3-, 4-, or 8-byte integer
4769 ID in network byte order.</p>
4770 </dd>
4771 <dt>tunnelSourceIPv4Address:</dt>
4772 <dd>
4773 <p>ID: 893, and enterprise ID 6876 (VMware).</p>
4774 <p>type: unsigned 32-bit integer.</p>
4775 <p>data type semantics: identifier.</p>
4776 <p>description: The IPv4 source address in the tunnel IP packet
4777 header.</p>
4778 </dd>
4779 <dt>tunnelDestinationIPv4Address:</dt>
4780 <dd>
4781 <p>ID: 894, and enterprise ID 6876 (VMware).</p>
4782 <p>type: unsigned 32-bit integer.</p>
4783 <p>data type semantics: identifier.</p>
4784 <p>description: The IPv4 destination address in the tunnel IP
4785 packet header.</p>
4786 </dd>
4787 <dt>tunnelProtocolIdentifier:</dt>
4788 <dd>
4789 <p>ID: 895, and enterprise ID 6876 (VMware).</p>
4790 <p>type: unsigned 8-bit integer.</p>
4791 <p>data type semantics: identifier.</p>
4792 <p>description: The value of the protocol number in the tunnel
4793 IP packet header. The protocol number identifies the tunnel IP
4794 packet payload type.</p>
4795 </dd>
4796 <dt>tunnelSourceTransportPort:</dt>
4797 <dd>
4798 <p>ID: 896, and enterprise ID 6876 (VMware).</p>
4799 <p>type: unsigned 16-bit integer.</p>
4800 <p>data type semantics: identifier.</p>
4801 <p>description: The source port identifier in the tunnel transport
4802 header. For the transport protocols UDP, TCP, and SCTP, this is
4803 the source port number given in the respective header.</p>
4804 </dd>
4805 <dt>tunnelDestinationTransportPort:</dt>
4806 <dd>
4807 <p>ID: 897, and enterprise ID 6876 (VMware).</p>
4808 <p>type: unsigned 16-bit integer.</p>
4809 <p>data type semantics: identifier.</p>
4810 <p>description: The destination port identifier in the tunnel
4811 transport header. For the transport protocols UDP, TCP, and SCTP,
4812 this is the destination port number given in the respective header.
4813 </p>
4814 </dd>
4815 </dl>
4816
4817 <p>
4818 Before Open vSwitch 2.5.90, <ref column="other_config"
4819 key="enable-tunnel-sampling"/> was only supported with per-bridge
4820 sampling, and ignored otherwise. Open vSwitch 2.5.90 and later support
4821 <ref column="other_config" key="enable-tunnel-sampling"/> for
4822 per-bridge and per-flow sampling.
4823 </p>
4824 </column>
4825
c97320eb
WZ
4826 <column name="other_config" key="virtual_obs_id"
4827 type='{"type": "string"}'>
4828 <p>
4829 A string that accompanies each IPFIX flow record. Its intended use is
4830 for the ``virtual observation ID,'' an identifier of a virtual
4831 observation point that is locally unique in a virtual network. It
4832 describes a location in the virtual network where IP packets can be
4833 observed. The maximum length is 254 bytes. If not specified, the
4834 field is omitted from the IPFIX flow record.
4835 </p>
4836
4837 <p>
4838 The following enterprise entity reports the specified virtual
4839 observation ID:
4840 </p>
4841
4842 <dl>
4843 <dt>virtualObsID:</dt>
4844 <dd>
4845 <p>ID: 898, and enterprise ID 6876 (VMware).</p>
4846 <p>type: variable-length string.</p>
4847 <p>data type semantics: identifier.</p>
4848 <p>description: A virtual observation domain ID that is locally
4849 unique in a virtual network.
4850 </p>
4851 </dd>
4852 </dl>
4853
4854 <p>
4855 This feature was introduced in Open vSwitch 2.5.90.
4856 </p>
4857 </column>
4858
99ec8f05
BP
4859 <group title="Per-Bridge Sampling">
4860 <p>
4861 These values affect only per-bridge sampling. See above for a
4862 description of the differences between per-bridge and flow-based
4863 sampling.
4864 </p>
8b7ea2d4 4865
99ec8f05
BP
4866 <column name="sampling">
4867 The rate at which packets should be sampled and sent to each target
4868 collector. If not specified, defaults to 400, which means one out of
4869 400 packets, on average, will be sent to each target collector.
4870 </column>
8b7ea2d4 4871
99ec8f05
BP
4872 <column name="obs_domain_id">
4873 The IPFIX Observation Domain ID sent in each IPFIX packet. If not
4874 specified, defaults to 0.
4875 </column>
4876
4877 <column name="obs_point_id">
4878 The IPFIX Observation Point ID sent in each IPFIX flow record. If not
4879 specified, defaults to 0.
4880 </column>
4881
99ec8f05
BP
4882 <column name="other_config" key="enable-input-sampling"
4883 type='{"type": "boolean"}'>
4884 By default, Open vSwitch samples and reports flows at bridge port input
4885 in IPFIX flow records. Set this column to <code>false</code> to
4886 disable input sampling.
4887 </column>
4888
4889 <column name="other_config" key="enable-output-sampling"
4890 type='{"type": "boolean"}'>
4891 By default, Open vSwitch samples and reports flows at bridge port
4892 output in IPFIX flow records. Set this column to <code>false</code> to
4893 disable output sampling.
4894 </column>
4895 </group>
8b7ea2d4 4896
29089a54
RL
4897 <group title="Common Columns">
4898 The overall purpose of these columns is described under <code>Common
4899 Columns</code> at the beginning of this document.
4900
4901 <column name="external_ids"/>
4902 </group>
4903 </table>
4904
4905 <table name="Flow_Sample_Collector_Set">
99ec8f05
BP
4906 <p>
4907 A set of IPFIX collectors of packet samples generated by OpenFlow
4908 <code>sample</code> actions. This table is used only for IPFIX
4909 flow-based sampling, not for per-bridge sampling (see the <ref
4910 table="IPFIX"/> table for a description of the two forms).
4911 </p>
29089a54
RL
4912
4913 <column name="id">
4914 The ID of this collector set, unique among the bridge's
4915 collector sets, to be used as the <code>collector_set_id</code>
4916 in OpenFlow <code>sample</code> actions.
4917 </column>
4918
4919 <column name="bridge">
4920 The bridge into which OpenFlow <code>sample</code> actions can
4921 be added to send packet samples to this set of IPFIX collectors.
4922 </column>
4923
4924 <column name="ipfix">
4925 Configuration of the set of IPFIX collectors to send one flow
4926 record per sampled packet to.
4927 </column>
4928
4929 <group title="Common Columns">
4930 The overall purpose of these columns is described under <code>Common
4931 Columns</code> at the beginning of this document.
4932
4933 <column name="external_ids"/>
4934 </group>
4935 </table>
4936
99eef98b 4937 <table name="AutoAttach">
039a8ccd
BP
4938 <p>
4939 Auto Attach configuration within a bridge. The IETF Auto-Attach SPBM
4940 draft standard describes a compact method of using IEEE 802.1AB Link
4941 Layer Discovery Protocol (LLDP) together with a IEEE 802.1aq Shortest
4942 Path Bridging (SPB) network to automatically attach network devices
4943 to individual services in a SPB network. The intent here is to allow
4944 network applications and devices using OVS to be able to easily take
4945 advantage of features offered by industry standard SPB networks.
4946 </p>
4947
4948 <p>
4949 Auto Attach (AA) uses LLDP to communicate between a directly connected
4950 Auto Attach Client (AAC) and Auto Attach Server (AAS). The LLDP protocol
4951 is extended to add two new Type-Length-Value tuples (TLVs). The first
4952 new TLV supports the ongoing discovery of directly connected AA
4953 correspondents. Auto Attach operates by regularly transmitting AA
4954 discovery TLVs between the AA client and AA server. By exchanging these
4955 discovery messages, both the AAC and AAS learn the system name and
4956 system description of their peer. In the OVS context, OVS operates as
4957 the AA client and the AA server resides on a switch at the edge of the
4958 SPB network.
4959 </p>
4960
4961 <p>
4962 Once AA discovery has been completed the AAC then uses the second new TLV
4963 to deliver identifier mappings from the AAC to the AAS. A primary feature
4964 of Auto Attach is to facilitate the mapping of VLANs defined outside the
4965 SPB network onto service ids (ISIDs) defined within the SPM network. By
4966 doing so individual external VLANs can be mapped onto specific SPB
4967 network services. These VLAN id to ISID mappings can be configured and
4968 managed locally using new options added to the ovs-vsctl command.
4969 </p>
4970
4971 <p>
4972 The Auto Attach OVS feature does not provide a full implementation of
4973 the LLDP protocol. Support for the mandatory TLVs as defined by the LLDP
4974 standard and support for the AA TLV extensions is provided. LLDP
4975 protocol support in OVS can be enabled or disabled on a port by port
4976 basis. LLDP support is disabled by default.
4977 </p>
99eef98b
DF
4978
4979 <column name="system_name">
4980 The system_name string is exported in LLDP messages. It should uniquely
4981 identify the bridge in the network.
4982 </column>
4983
4984 <column name="system_description">
4985 The system_description string is exported in LLDP messages. It should
4986 describe the type of software and hardware.
4987 </column>
4988
4989 <column name="mappings">
039a8ccd
BP
4990 A mapping from SPB network Individual Service Identifier (ISID) to VLAN
4991 id.
99eef98b
DF
4992 </column>
4993 </table>
89365653 4994</database>