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