1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
|
<?xml version="1.0" encoding="utf-8"?>
<database name="ovn-nb" title="OVN Northbound Database">
<p>
This database is the interface between OVN and the cloud management system
(CMS), such as OpenStack, running above it. The CMS produces almost all of
the contents of the database. The <code>ovn-northd</code> program
monitors the database contents, transforms it, and stores it into the <ref
db="OVN_Southbound"/> database.
</p>
<p>
We generally speak of ``the'' CMS, but one can imagine scenarios in
which multiple CMSes manage different parts of an OVN deployment.
</p>
<h2>External IDs</h2>
<p>
Each of the tables in this database contains a special column, named
<code>external_ids</code>. This column has the same form and purpose each
place it appears.
</p>
<dl>
<dt><code>external_ids</code>: map of string-string pairs</dt>
<dd>
Key-value pairs for use by the CMS. The CMS might use certain pairs, for
example, to identify entities in its own configuration that correspond to
those in this database.
</dd>
</dl>
<table name="NB_Global" title="Northbound configuration">
<p>
Northbound configuration for an OVN system. This table must have exactly
one row.
</p>
<group title="Status">
These columns allow a client to track the overall configuration state of
the system.
<column name="nb_cfg">
Sequence number for client to increment. When a client modifies any
part of the northbound database configuration and wishes to wait for
<code>ovn-northd</code> and possibly all of the hypervisors to finish
applying the changes, it may increment this sequence number.
</column>
<column name="sb_cfg">
Sequence number that <code>ovn-northd</code> sets to the value of <ref
column="nb_cfg"/> after it finishes applying the corresponding
configuration changes to the <ref db="OVN_Southbound"/> database.
</column>
<column name="hv_cfg">
Sequence number that <code>ovn-northd</code> sets to the smallest
sequence number of all the chassis in the system, as reported in the
<code>Chassis</code> table in the southbound database. Thus, <ref
column="hv_cfg"/> equals <ref column="nb_cfg"/> if all chassis are
caught up with the northbound configuration (which may never happen, if
any chassis is down). This value can regress, if a chassis was removed
from the system and rejoins before catching up.
</column>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
<group title="Connection Options">
<column name="connections">
Database clients to which the Open vSwitch database server should
connect or on which it should listen, along with options for how these
connections should be configured. See the <ref table="Connection"/>
table for more information.
</column>
<column name="ssl">
Global SSL configuration.
</column>
</group>
</table>
<table name="Logical_Switch" title="L2 logical switch">
<p>
Each row represents one L2 logical switch.
</p>
<p>
There are two kinds of logical switches, that is, ones that fully
virtualize the network (overlay logical switches) and ones that provide
simple connectivity to a physical network (bridged logical switches).
They work in the same way when providing connectivity between logical
ports on same chasis, but differently when connecting remote logical
ports. Overlay logical switches connect remote logical ports by tunnels,
while bridged logical switches provide connectivity to remote ports by
bridging the packets to directly connected physical L2 segment with the
help of <code>localnet</code> ports. Each bridged logical switch has
one and only one <code>localnet</code> port, which has only one special
address <code>unknown</code>.
</p>
<column name="ports">
<p>
The logical ports connected to the logical switch.
</p>
<p>
It is an error for multiple logical switches to include the same
logical port.
</p>
</column>
<column name="load_balancer">
Load balance a virtual ipv4 address to a set of logical port endpoint
ipv4 addresses.
</column>
<column name="acls">
Access control rules that apply to packets within the logical switch.
</column>
<column name="qos_rules">
QOS marking rules that apply to packets within the logical switch.
</column>
<column name="dns_records">
This column defines the DNS records to be used for resolving internal
DNS queries within the logical switch by the native DNS resolver.
Please see the <ref table="DNS"/> table.
</column>
<group title="Naming">
<p>
These columns provide names for the logical switch. From OVN's
perspective, these names have no special meaning or purpose other than
to provide convenience for human interaction with the database.
There is no requirement for the name to be unique. (For a unique
identifier for a logical switch, use its row UUID.)
</p>
<p>
(Originally, <ref column="name"/> was intended to serve the purpose of
a human-friendly name, but the Neutron integration used it to uniquely
identify its own switch object, in the format
<code>neutron-<var>uuid</var></code>. Later on, Neutron started
propagating the friendly name of a switch as <ref column="external_ids"
key="neutron:network_name"/>. Perhaps this can be cleaned up someday.)
</p>
<column name="name">
A name for the logical switch.
</column>
<column name="external_ids" key="neutron:network_name">
Another name for the logical switch.
</column>
</group>
<group title="IP Address Assignment">
<p>
These options control automatic IP address management (IPAM) for ports
attached to the logical switch. To enable IPAM for IPv4, set <ref
column="other_config" key="subnet"/> and optionally <ref
column="other_config:exclude_ips"/>. To enable IPAM for IPv6, set
<ref column="other_config" key="ipv6_prefix"/>. IPv4 and IPv6 may
be enabled together or separately.
</p>
<p>
To request dynamic address assignment for a particular port, use the
<code>dynamic</code> keyword in the <ref table="Logical_Switch_Port"
column="addresses"/> column of the port's <ref
table="Logical_Switch_Port"/> row. This requests both an IPv4 and an
IPv6 address, if IPAM for IPv4 and IPv6 are both enabled.
</p>
<column name="other_config" key="subnet">
Set this to an IPv4 subnet, e.g. <code>192.168.0.0/24</code>, to enable
<code>ovn-northd</code> to automatically assign IP addresses within
that subnet.
</column>
<column name="other_config" key="exclude_ips">
<p>
To exclude some addresses from automatic IP address management, set
this to a list of the IPv4 addresses or <code>..</code>-delimited
ranges to exclude. The addresses or ranges should be a subset of
those in <ref column="other_config" key="subnet"/>.
</p>
<p>
Whether listed or not, <code>ovn-northd</code> will never allocate
the first or last address in a subnet, such as 192.168.0.0 or
192.168.0.255 in 192.168.0.0/24.
</p>
<p>
Examples:
</p>
<ul>
<li><code>192.168.0.2 192.168.0.10</code></li>
<li><code>192.168.0.4 192.168.0.30..192.168.0.60 192.168.0.110..192.168.0.120</code></li>
<li><code>192.168.0.110..192.168.0.120 192.168.0.25..192.168.0.30 192.168.0.144</code></li>
</ul>
</column>
<column name="other_config" key="ipv6_prefix">
Set this to an IPv6 prefix to enable <code>ovn-northd</code> to
automatically assign IPv6 addresses using this prefix. The assigned
IPv6 address will be generated using the IPv6 prefix and the MAC
address (converted to an IEEE EUI64 identifier) of the port. The IPv6
prefix defined here should be a valid IPv6 address ending with
<code>::</code>.
<p>
Examples:
</p>
<ul>
<li><code>aef0::</code></li>
<li><code>bef0:1234:a890:5678::</code></li>
<li><code>8230:5678::</code></li>
</ul>
</column>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Logical_Switch_Port" title="L2 logical switch port">
<p>
A port within an L2 logical switch.
</p>
<group title="Core Features">
<column name="name">
<p>
The logical port name.
</p>
<p>
For entities (VMs or containers) that are spawned in the hypervisor,
the name used here must match those used in the <ref key="iface-id"
table="Interface" column="external_ids" db="Open_vSwitch"/> in the
<ref db="Open_vSwitch"/> database's <ref table="Interface"
db="Open_vSwitch"/> table, because hypervisors use <ref key="iface-id"
table="Interface" column="external_ids" db="Open_vSwitch"/> as a lookup
key to identify the network interface of that entity.
</p>
<p>
For containers that share a VIF within a VM, the name can be any
unique identifier. See <code>Containers</code>, below, for more
information.
</p>
</column>
<column name="type">
<p>
Specify a type for this logical port. Logical ports can be used to
model other types of connectivity into an OVN logical switch. The
following types are defined:
</p>
<dl>
<dt>(empty string)</dt>
<dd>
A VM (or VIF) interface.
</dd>
<dt><code>router</code></dt>
<dd>
A connection to a logical router.
</dd>
<dt><code>localnet</code></dt>
<dd>
A connection to a locally accessible network from each
<code>ovn-controller</code> instance. A logical switch can only
have a single <code>localnet</code> port attached. This is used
to model direct connectivity to an existing network.
</dd>
<dt><code>localport</code></dt>
<dd>
A connection to a local VIF. Traffic that arrives on a
<code>localport</code> is never forwarded over a tunnel to another
chassis. These ports are present on every chassis and have the same
address in all of them. This is used to model connectivity to local
services that run on every hypervisor.
</dd>
<dt><code>l2gateway</code></dt>
<dd>
A connection to a physical network.
</dd>
<dt><code>vtep</code></dt>
<dd>
A port to a logical switch on a VTEP gateway.
</dd>
</dl>
</column>
</group>
<group title="Options">
<column name="options">
This column provides key/value settings specific to the logical port
<ref column="type"/>. The type-specific options are described
individually below.
</column>
<group title="Options for router ports">
<p>
These options apply when <ref column="type"/> is <code>router</code>.
</p>
<column name="options" key="router-port">
Required. The <ref column="name"/> of the <ref
table="Logical_Router_Port"/> to which this logical switch port is
connected.
</column>
<column name="options" key="nat-addresses">
<p>
This is used to send gratuitous ARPs for SNAT and DNAT IP
addresses via the <code>localnet</code> port that is attached
to the same logical switch as this type <code>router</code>
port. This option is specified on a logical switch port that is
connected to a gateway router, or a logical switch port that is
connected to a distributed gateway port on a logical router.
</p>
<p>
This must take one of the following forms:
</p>
<dl>
<dt><code>router</code></dt>
<dd>
<p>
Gratuitous ARPs will be sent for all SNAT and DNAT external IP
addresses and for all load balancer IP addresses defined on the
<ref column="options" key="router-port"/>'s logical router,
using the <ref column="options" key="router-port"/>'s MAC
address.
</p>
<p>
This form of <ref column="options" key="nat-addresses"/> is
valid for logical switch ports where <ref column="options"
key="router-port"/> is the name of a port on a gateway router,
or the name of a distributed gateway port.
</p>
<p>
Supported only in OVN 2.8 and later. Earlier versions required
NAT addresses to be manually synchronized.
</p>
</dd>
<dt><code>Ethernet address followed by one or more IPv4 addresses</code></dt>
<dd>
<p>
Example: <code>80:fa:5b:06:72:b7 158.36.44.22
158.36.44.24</code>. This would result in generation of
gratuitous ARPs for IP addresses 158.36.44.22 and 158.36.44.24
with a MAC address of 80:fa:5b:06:72:b7.
</p>
<p>
This form of <ref column="options" key="nat-addresses"/> is
only valid for logical switch ports where <ref column="options"
key="router-port"/> is the name of a port on a gateway router.
</p>
</dd>
</dl>
</column>
</group>
<group title="Options for localnet ports">
<p>
These options apply when <ref column="type"/> is
<code>localnet</code>.
</p>
<column name="options" key="network_name">
Required. The name of the network to which the <code>localnet</code>
port is connected. Each hypervisor, via <code>ovn-controller</code>,
uses its local configuration to determine exactly how to connect to
this locally accessible network.
</column>
</group>
<group title="Options for l2gateway ports">
<p>
These options apply when <ref column="type"/> is
<code>l2gateway</code>.
</p>
<column name="options" key="network_name">
Required. The name of the network to which the <code>l2gateway</code>
port is connected. The L2 gateway, via <code>ovn-controller</code>,
uses its local configuration to determine exactly how to connect to
this network.
</column>
<column name="options" key="l2gateway-chassis">
Required. The chassis on which the <code>l2gateway</code> logical
port should be bound to. <code>ovn-controller</code> running on the
defined chassis will connect this logical port to the physical network.
</column>
</group>
<group title="Options for vtep ports">
<p>
These options apply when <ref column="type"/> is <code>vtep</code>.
</p>
<column name="options" key="vtep-physical-switch">
Required. The name of the VTEP gateway.
</column>
<column name="options" key="vtep-logical-switch">
Required. A logical switch name connected by the VTEP gateway.
</column>
</group>
<group title="VMI (or VIF) Options">
<p>
These options apply to logical ports with <ref column="type"/> having
(empty string)
</p>
<column name="options" key="qos_max_rate">
If set, indicates the maximum rate for data sent from this interface,
in bit/s. The traffic will be shaped according to this limit.
</column>
<column name="options" key="qos_burst">
If set, indicates the maximum burst size for data sent from this
interface, in bits.
</column>
</group>
</group>
<group title="Containers">
<p>
When a large number of containers are nested within a VM, it may be too
expensive to dedicate a VIF to each container. OVN can use VLAN tags
to support such cases. Each container is assigned a VLAN ID and each
packet that passes between the hypervisor and the VM is tagged with the
appropriate ID for the container. Such VLAN IDs never appear on a
physical wire, even inside a tunnel, so they need not be unique except
relative to a single VM on a hypervisor.
</p>
<p>
These columns are used for VIFs that represent nested containers using
shared VIFs. For VMs and for containers that have dedicated VIFs, they
are empty.
</p>
<column name="parent_name">
The VM interface through which the nested container sends its network
traffic. This must match the <ref column="name"/> column for some
other <ref table="Logical_Switch_Port"/>.
</column>
<column name="tag_request">
<p>
The VLAN tag in the network traffic associated with a container's
network interface. The client can request <code>ovn-northd</code>
to allocate a tag that is unique within the scope of a specific
parent (specified in <ref column="parent_name"/>) by setting a value
of <code>0</code> in this column. The allocated value is written
by <code>ovn-northd</code> in the <ref column="tag"/> column.
(Note that these tags are allocated and managed locally in
<code>ovn-northd</code>, so they cannot be reconstructed in the event
that the database is lost.) The client can also request a specific
non-zero tag and <code>ovn-northd</code> will honor it and copy that
value to the <ref column="tag"/> column.
</p>
<p>
When <ref column="type"/> is set to <code>localnet</code> or
<code>l2gateway</code>, this can
be set to indicate that the port represents a connection to a
specific VLAN on a locally accessible network. The VLAN ID is used
to match incoming traffic and is also added to outgoing traffic.
</p>
</column>
<column name="tag">
<p>
The VLAN tag allocated by <code>ovn-northd</code> based on the
contents of the <ref column="tag_request"/> column.
</p>
</column>
</group>
<group title="Port State">
<column name="up">
This column is populated by <code>ovn-northd</code>, rather than by the
CMS plugin as is most of this database. When a logical port is bound
to a physical location in the OVN Southbound database <ref
db="OVN_Southbound" table="Binding"/> table, <code>ovn-northd</code>
sets this column to <code>true</code>; otherwise, or if the port
becomes unbound later, it sets it to <code>false</code>. This allows
the CMS to wait for a VM's (or container's) networking to become active
before it allows the VM (or container) to start.
</column>
<column name="enabled">
This column is used to administratively set port state. If this column
is empty or is set to <code>true</code>, the port is enabled. If this
column is set to <code>false</code>, the port is disabled. A disabled
port has all ingress and egress traffic dropped.
</column>
</group>
<group title="Addressing">
<column name="addresses">
<p>
Addresses owned by the logical port.
</p>
<p>
Each element in the set must take one of the following forms:
</p>
<dl>
<dt><code>Ethernet address followed by zero or more IPv4 or IPv6 addresses (or both)</code></dt>
<dd>
<p>
An Ethernet address defined is owned by the logical port.
Like a physical Ethernet NIC, a logical port ordinarily has
a single fixed Ethernet address.
</p>
<p>
When a OVN logical switch processes a unicast Ethernet frame
whose destination MAC address is in a logical port's <ref
column="addresses"/> column, it delivers it only to that port, as
if a MAC learning process had learned that MAC address on the
port.
</p>
<p>
If IPv4 or IPv6 address(es) (or both) are defined, it indicates
that the logical port owns the given IP addresses.
</p>
<p>
If IPv4 address(es) are defined, the OVN logical switch uses this
information to synthesize responses to ARP requests without
traversing the physical network. The OVN logical router connected
to the logical switch, if any, uses this information to avoid
issuing ARP requests for logical switch ports.
</p>
<p>
Note that the order here is important. The Ethernet address must
be listed before the IP address(es) if defined.
</p>
<p>
Examples:
</p>
<dl>
<dt><code>80:fa:5b:06:72:b7</code></dt>
<dd>
This indicates that the logical port owns the above mac address.
</dd>
<dt><code>80:fa:5b:06:72:b7 10.0.0.4 20.0.0.4</code></dt>
<dd>
This indicates that the logical port owns the mac address and two
IPv4 addresses.
</dd>
<dt><code>80:fa:5b:06:72:b7 fdaa:15f2:72cf:0:f816:3eff:fe20:3f41</code></dt>
<dd>
This indicates that the logical port owns the mac address and
1 IPv6 address.
</dd>
<dt><code>80:fa:5b:06:72:b7 10.0.0.4 fdaa:15f2:72cf:0:f816:3eff:fe20:3f41</code></dt>
<dd>
This indicates that the logical port owns the mac address and
1 IPv4 address and 1 IPv6 address.
</dd>
</dl>
</dd>
<dt><code>unknown</code></dt>
<dd>
This indicates that the logical port has an unknown set of Ethernet
addresses. When an OVN logical switch processes a unicast Ethernet
frame whose destination MAC address is not in any logical port's
<ref column="addresses"/> column, it delivers it to the port (or
ports) whose <ref column="addresses"/> columns include
<code>unknown</code>.
</dd>
<dt><code>dynamic</code></dt>
<dd>
Use this keyword to make <code>ovn-northd</code> generate a
globally unique MAC address and choose an unused IPv4 address with
the logical port's subnet and store them in the port's <ref
column="dynamic_addresses"/> column. <code>ovn-northd</code> will
use the subnet specified in <ref table="Logical_Switch"
column="other_config" key="subnet"/> in the port's <ref
table="Logical_Switch"/>.
</dd>
<dt><code>Ethernet address followed by keyword "dynamic"</code></dt>
<dd>
<p>
The keyword <code>dynamic</code> after the MAC address indicates
that <code>ovn-northd</code> should choose an unused IPv4 address
from the logical port's subnet and store it with the specified
MAC in the port's <ref column="dynamic_addresses"/> column.
<code>ovn-northd</code> will use the subnet specified in <ref
table="Logical_Switch" column="other_config" key="subnet"/> in
the port's <ref table="Logical_Switch"/> table.
</p>
<p>
Examples:
</p>
<dl>
<dt><code>80:fa:5b:06:72:b7 dynamic</code></dt>
<dd>
This indicates that the logical port owns the specified
MAC address and <code>ovn-northd</code> should allocate an
unused IPv4 address for the logical port from the corresponding
logical switch subnet.
</dd>
</dl>
</dd>
<dt><code>router</code></dt>
<dd>
<p>
Accepted only when <ref column="type"/> is <code>router</code>.
This indicates that the Ethernet, IPv4, and IPv6 addresses for
this logical switch port should be obtained from the connected
logical router port, as specified by <code>router-port</code> in
<ref column="options"/>.
</p>
<p>
The resulting addresses are used to populate the logical
switch's destination lookup, and also for the logical switch
to generate ARP and ND replies.
</p>
<p>
If the connected logical router port has a
<code>redirect-chassis</code> specified and the logical router
has rules specified in <ref column="nat" table="Logical_Router"/>
with <ref column="external_mac" table="NAT"/>, then those
addresses are also used to populate the switch's destination
lookup.
</p>
<p>
Supported only in OVN 2.7 and later. Earlier versions required
router addresses to be manually synchronized.
</p>
</dd>
</dl>
</column>
<column name="dynamic_addresses">
<p>
Addresses assigned to the logical port by <code>ovn-northd</code>, if
<code>dynamic</code> is specified in <ref column="addresses"/>.
Addresses will be of the same format as those that populate the <ref
column="addresses"/> column. Note that dynamically assigned
addresses are constructed and managed locally in ovn-northd, so they
cannot be reconstructed in the event that the database is lost.
</p>
</column>
<column name="port_security">
<p>
This column controls the addresses from which the host attached to the
logical port (``the host'') is allowed to send packets and to which it
is allowed to receive packets. If this column is empty, all addresses
are permitted.
</p>
<p>
Each element in the set must begin with one Ethernet address.
This would restrict the host to sending packets from and receiving
packets to the ethernet addresses defined in the logical port's
<ref column="port_security"/> column. It also restricts the inner
source MAC addresses that the host may send in ARP and IPv6
Neighbor Discovery packets. The host is always allowed to receive packets
to multicast and broadcast Ethernet addresses.
</p>
<p>
Each element in the set may additionally contain one or more IPv4 or
IPv6 addresses (or both), with optional masks. If a mask is given, it
must be a CIDR mask. In addition to the restrictions described for
Ethernet addresses above, such an element restricts the IPv4 or IPv6
addresses from which the host may send and to which it may receive
packets to the specified addresses. A masked address, if the host part
is zero, indicates that the host is allowed to use any address in the
subnet; if the host part is nonzero, the mask simply indicates the size
of the subnet. In addition:
</p>
<ul>
<li>
<p>
If any IPv4 address is given, the host is also allowed to receive
packets to the IPv4 local broadcast address 255.255.255.255 and to
IPv4 multicast addresses (224.0.0.0/4). If an IPv4 address with a
mask is given, the host is also allowed to receive packets to the
broadcast address in that specified subnet.
</p>
<p>
If any IPv4 address is given, the host is additionally restricted
to sending ARP packets with the specified source IPv4 address.
(RARP is not restricted.)
</p>
</li>
<li>
<p>
If any IPv6 address is given, the host is also allowed to receive
packets to IPv6 multicast addresses (ff00::/8).
</p>
<p>
If any IPv6 address is given, the host is additionally restricted
to sending IPv6 Neighbor Discovery Solicitation or Advertisement
packets with the specified source address or, for solicitations,
the unspecified address.
</p>
</li>
</ul>
<p>
If an element includes an IPv4 address, but no IPv6 addresses, then
IPv6 traffic is not allowed. If an element includes an IPv6 address,
but no IPv4 address, then IPv4 and ARP traffic is not allowed.
</p>
<p>
This column uses the same lexical syntax as the <ref column="match"
table="Pipeline" db="OVN_Southbound"/> column in the OVN Southbound
database's <ref table="Pipeline" db="OVN_Southbound"/> table. Multiple
addresses within an element may be space or comma separated.
</p>
<p>
This column is provided as a convenience to cloud management systems,
but all of the features that it implements can be implemented as ACLs
using the <ref table="ACL"/> table.
</p>
<p>
Examples:
</p>
<dl>
<dt><code>80:fa:5b:06:72:b7</code></dt>
<dd>
The host may send traffic from and receive traffic to the specified
MAC address, and to receive traffic to Ethernet multicast and
broadcast addresses, but not otherwise. The host may not send ARP or
IPv6 Neighbor Discovery packets with inner source Ethernet addresses
other than the one specified.
</dd>
<dt><code>80:fa:5b:06:72:b7 192.168.1.10/24</code></dt>
<dd>
This adds further restrictions to the first example. The host may
send IPv4 packets from or receive IPv4 packets to only 192.168.1.10,
except that it may also receive IPv4 packets to 192.168.1.255 (based
on the subnet mask), 255.255.255.255, and any address in 224.0.0.0/4.
The host may not send ARPs with a source Ethernet address other than
80:fa:5b:06:72:b7 or source IPv4 address other than 192.168.1.10.
The host may not send or receive any IPv6 (including IPv6 Neighbor
Discovery) traffic.
</dd>
<dt><code>"80:fa:5b:12:42:ba", "80:fa:5b:06:72:b7 192.168.1.10/24"</code></dt>
<dd>
The host may send traffic from and receive traffic to the
specified MAC addresses, and
to receive traffic to Ethernet multicast and broadcast addresses,
but not otherwise. With MAC 80:fa:5b:12:42:ba, the host may
send traffic from and receive traffic to any L3 address.
With MAC 80:fa:5b:06:72:b7, the host may send IPv4 packets from or
receive IPv4 packets to only 192.168.1.10, except that it may also
receive IPv4 packets to 192.168.1.255 (based on the subnet mask),
255.255.255.255, and any address in 224.0.0.0/4. The host may not
send or receive any IPv6 (including IPv6 Neighbor Discovery) traffic.
</dd>
</dl>
</column>
</group>
<group title="DHCP">
<column name="dhcpv4_options">
This column defines the DHCPv4 Options to be included by the
<code>ovn-controller</code> when it replies to the DHCPv4 requests.
Please see the <ref table="DHCP_Options"/> table.
</column>
<column name="dhcpv6_options">
This column defines the DHCPv6 Options to be included by the
<code>ovn-controller</code> when it replies to the DHCPv6 requests.
Please see the <ref table="DHCP_Options"/> table.
</column>
</group>
<group title="Naming">
<column name="external_ids" key="neutron:port_name">
<p>
This column gives an optional human-friendly name for the port. This
name has no special meaning or purpose other than to provide
convenience for human interaction with the northbound database.
</p>
<p>
Neutron copies this from its own port object's name. (Neutron ports
do are not assigned human-friendly names by default, so it will often
be empty.)
</p>
</column>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Address_Set" title="Address Sets">
<p>
Each row in this table represents a named set of addresses.
An address set may contain Ethernet, IPv4, or IPv6 addresses
with optional bitwise or CIDR masks.
Address set may ultimately be used in ACLs to compare against
fields such as <code>ip4.src</code> or <code>ip6.src</code>.
A single address set must contain addresses of the
same type. As an example, the following would create an address set
with three IP addresses:
</p>
<pre>
ovn-nbctl create Address_Set name=set1 addresses='10.0.0.1 10.0.0.2 10.0.0.3'
</pre>
<p>
Address sets may be used in the <ref column="match" table="ACL"/> column
of the <ref table="ACL"/> table. For syntax information, see the details
of the expression language used for the <ref column="match"
table="Logical_Flow" db="OVN_Southbound"/> column in the <ref
table="Logical_Flow" db="OVN_Southbound"/> table of the <ref
db="OVN_Southbound"/> database.
</p>
<column name="name">
A name for the address set. Names are ASCII and must match
<code>[a-zA-Z_.][a-zA-Z_.0-9]*</code>.
</column>
<column name="addresses">
The set of addresses in string form.
</column>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Load_Balancer" title="load balancer">
<p>
Each row represents one load balancer.
</p>
<column name="name">
A name for the load balancer. This name has no special meaning or
purpose other than to provide convenience for human interaction with
the ovn-nb database.
</column>
<column name="vips">
<p>
A map of virtual IPv4 addresses (and an optional port number with
<code>:</code> as a separator) associated with this load balancer and
their corresponding endpoint IPv4 addresses (and optional port numbers
with <code>:</code> as separators) separated by commas. If
the destination IP address (and port number) of a packet leaving a
container or a VM matches the virtual IPv4 address (and port number)
provided here as a key, then OVN will statefully replace the
destination IP address by one of the provided IPv4 address (and port
number) in this map as a value. Examples for keys are "192.168.1.4"
and "172.16.1.8:80". Examples for value are "10.0.0.1, 10.0.0.2" and
"20.0.0.10:8800, 20.0.0.11:8800".
</p>
</column>
<column name="protocol">
<p>
Valid protocols are <code>tcp</code> or <code>udp</code>. This column
is useful when a port number is provided as part of the
<code>vips</code> column. If this column is empty and a port number
is provided as part of <code>vips</code> column, OVN assumes the
protocol to be <code>tcp</code>.
</p>
</column>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="ACL" title="Access Control List (ACL) rule">
<p>
Each row in this table represents one ACL rule for a logical switch
that points to it through its <ref column="acls"/> column. The <ref
column="action"/> column for the highest-<ref column="priority"/>
matching row in this table determines a packet's treatment. If no row
matches, packets are allowed by default. (Default-deny treatment is
possible: add a rule with <ref column="priority"/> 0, <code>0</code> as
<ref column="match"/>, and <code>deny</code> as <ref column="action"/>.)
</p>
<column name="priority">
<p>
The ACL rule's priority. Rules with numerically higher priority
take precedence over those with lower. If two ACL rules with
the same priority both match, then the one actually applied to a
packet is undefined.
</p>
<p>
Return traffic from an <code>allow-related</code> flow is always
allowed and cannot be changed through an ACL.
</p>
</column>
<column name="direction">
<p>Direction of the traffic to which this rule should apply:</p>
<ul>
<li>
<code>from-lport</code>: Used to implement filters on traffic
arriving from a logical port. These rules are applied to the
logical switch's ingress pipeline.
</li>
<li>
<code>to-lport</code>: Used to implement filters on traffic
forwarded to a logical port. These rules are applied to the
logical switch's egress pipeline.
</li>
</ul>
</column>
<column name="match">
<p>
The packets that the ACL should match, in the same expression
language used for the <ref column="match" table="Logical_Flow"
db="OVN_Southbound"/> column in the OVN Southbound database's
<ref table="Logical_Flow" db="OVN_Southbound"/> table. The
<code>outport</code> logical port is only available in the
<code>to-lport</code> direction (the <code>inport</code> is
available in both directions).
</p>
<p>
By default all traffic is allowed. When writing a more
restrictive policy, it is important to remember to allow flows
such as ARP and IPv6 neighbor discovery packets.
</p>
<p>
Note that you can not create an ACL matching on a port with
type=router.
</p>
<p>
Note that when <code>localnet</code> port exists in a lswitch, for
<code>to-lport</code> direction, the <code>inport</code> works only if
the <code>to-lport</code> is located on the same chassis as the
<code>inport</code>.
</p>
</column>
<column name="action">
<p>The action to take when the ACL rule matches:</p>
<ul>
<li>
<code>allow</code>: Forward the packet.
</li>
<li>
<code>allow-related</code>: Forward the packet and related traffic
(e.g. inbound replies to an outbound connection).
</li>
<li>
<code>drop</code>: Silently drop the packet.
</li>
<li>
<code>reject</code>: Drop the packet, replying with a RST for TCP or
ICMP unreachable message for other IP-based protocols.
<code>Not implemented--currently treated as drop</code>
</li>
</ul>
</column>
<column name="log">
<p>
If set to <code>true</code>, packets that match the ACL will trigger a
log message on the transport node or nodes that perform ACL processing.
Logging may be combined with any <ref column="action"/>.
</p>
<p>
Logging is not yet implemented.
</p>
</column>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Logical_Router" title="L3 logical router">
<p>
Each row represents one L3 logical router.
</p>
<column name="ports">
The router's ports.
</column>
<column name="static_routes">
One or more static routes for the router.
</column>
<column name="enabled">
This column is used to administratively set router state. If this column
is empty or is set to <code>true</code>, the router is enabled. If this
column is set to <code>false</code>, the router is disabled. A disabled
router has all ingress and egress traffic dropped.
</column>
<column name="nat">
One or more NAT rules for the router. NAT rules only work on
Gateway routers, and on distributed routers with one logical router
port with a <code>redirect-chassis</code> specified.
</column>
<column name="load_balancer">
Load balance a virtual ipv4 address to a set of logical port ipv4
addresses. Load balancer rules only work on the Gateway routers.
</column>
<group title="Naming">
<p>
These columns provide names for the logical router. From OVN's
perspective, these names have no special meaning or purpose other than
to provide convenience for human interaction with the northbound
database. There is no requirement for the name to be unique. (For a
unique identifier for a logical router, use its row UUID.)
</p>
<p>
(Originally, <ref column="name"/> was intended to serve the purpose of
a human-friendly name, but the Neutron integration used it to uniquely
identify its own router object, in the format
<code>neutron-<var>uuid</var></code>. Later on, Neutron started
propagating the friendly name of a router as <ref column="external_ids"
key="neutron:router_name"/>. Perhaps this can be cleaned up someday.)
</p>
<column name="name">
A name for the logical router.
</column>
<column name="external_ids" key="neutron:router_name">
Another name for the logical router.
</column>
</group>
<group title="Options">
<p>
Additional options for the logical router.
</p>
<column name="options" key="chassis">
<p>
If set, indicates that the logical router in question is a Gateway
router (which is centralized) and resides in the set chassis. The
same value is also used by <code>ovn-controller</code> to
uniquely identify the chassis in the OVN deployment and
comes from <code>external_ids:system-id</code> in the
<code>Open_vSwitch</code> table of Open_vSwitch database.
</p>
<p>
The Gateway router can only be connected to a distributed router
via a switch if SNAT and DNAT are to be configured in the Gateway
router.
</p>
</column>
<column name="options" key="dnat_force_snat_ip">
<p>
If set, indicates the IP address to use to force SNAT a packet
that has already been DNATed in the gateway router. When multiple
gateway routers are configured, a packet can potentially enter any
of the gateway router, get DNATted and eventually reach the logical
switch port. For the return traffic to go back to the same gateway
router (for unDNATing), the packet needs a SNAT in the first place.
This can be achieved by setting the above option with a gateway
specific IP address.
</p>
</column>
<column name="options" key="lb_force_snat_ip">
<p>
If set, indicates the IP address to use to force SNAT a packet
that has already been load-balanced in the gateway router. When
multiple gateway routers are configured, a packet can potentially
enter any of the gateway routers, get DNATted as part of the load-
balancing and eventually reach the logical switch port.
For the return traffic to go back to the same gateway router (for
unDNATing), the packet needs a SNAT in the first place. This can be
achieved by setting the above option with a gateway specific IP
address.
</p>
</column>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="QoS" title="QOS table">
<p>
Each row in this table represents one QOS rule for a logical switch
that points to it through its <ref column="qos_rules"/> column. The <ref
column="action"/> column for the highest-<ref column="priority"/>
matching row in this table determines a packet's qos marking. If no row
matches, packets will not have any qos marking.
</p>
<column name="priority">
<p>
The QOS rule's priority. Rules with numerically higher priority
take precedence over those with lower. If two QOS rules with
the same priority both match, then the one actually applied to a
packet is undefined.
</p>
</column>
<column name="direction">
<p>
The value of this field is similar to <ref colun="direction"
table="ACL" db="OVN_Northbound"/> column in the OVN Northbound
database's <ref table="ACL" db="OVN_Northbound"/> table.
</p>
</column>
<column name="match">
<p>
The packets that the QOS rules should match, in the same expression
language used for the <ref column="match" table="Logical_Flow"
db="OVN_Southbound"/> column in the OVN Southbound database's
<ref table="Logical_Flow" db="OVN_Southbound"/> table. The
<code>outport</code> logical port is only available in the
<code>to-lport</code> direction (the <code>inport</code> is
available in both directions).
</p>
</column>
<column name="action">
<p>The action to be performed on the matched packet</p>
<ul>
<li>
<code>dscp</code>: The value of this action should be in the
range of 0 to 63 (inclusive).
</li>
</ul>
</column>
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</table>
<table name="Logical_Router_Port" title="L3 logical router port">
<p>
A port within an L3 logical router.
</p>
<p>
Exactly one <ref table="Logical_Router"/> row must reference a given
logical router port.
</p>
<column name="name">
<p>
A name for the logical router port.
</p>
<p>
In addition to provide convenience for human interaction with the
northbound database, this column is used as reference by its patch port
in <ref table="Logical_Switch_Port"/> or another logical router port in
<ref table="Logical_Router_Port"/>.
</p>
</column>
<column name="networks">
<p>
The IP addresses and netmasks of the router. For example,
<code>192.168.0.1/24</code> indicates that the router's IP
address is 192.168.0.1 and that packets destined to
192.168.0.<var>x</var> should be routed to this port.
</p>
<p>
A logical router port always adds a link-local IPv6 address
(fe80::/64) automatically generated from the interface's MAC
address using the modified EUI-64 format.
</p>
</column>
<column name="mac">
The Ethernet address that belongs to this router port.
</column>
<column name="enabled">
This column is used to administratively set port state. If this column
is empty or is set to <code>true</code>, the port is enabled. If this
column is set to <code>false</code>, the port is disabled. A disabled
port has all ingress and egress traffic dropped.
</column>
<group title="Options">
<p>
Additional options for the logical router port.
</p>
<column name="options" key="redirect-chassis">
<p>
If set, this indicates that this logical router port represents
a distributed gateway port that connects this router to a logical
switch with a localnet port. There may be at most one such
logical router port on each logical router.
</p>
<p>
Even when a <code>redirect-chassis</code> is specified, the
logical router port still effectively resides on each chassis.
However, due to the implications of the use of L2 learning in the
physical network, as well as the need to support advanced features
such as one-to-many NAT (aka IP masquerading), a subset of the
logical router processing is handled in a centralized manner on
the specified <code>redirect-chassis</code>.
</p>
<p>
When this option is specified, the peer logical switch port's
<ref column="addresses" table="Logical_Switch_Port"/> must be
set to <code>router</code>. With this setting, the <ref
column="external_mac" table="NAT"/>s specified in NAT rules are
automatically programmed in the peer logical switch's
destination lookup on the chassis where the <ref
column="logical_port" table="NAT"/> resides. In addition, the
logical router's MAC address is automatically programmed in the
peer logical switch's destination lookup flow on the
<code>redirect-chassis</code>.
</p>
<p>
When this option is specified and it is desired to generate
gratuitous ARPs for NAT addresses, then the peer logical switch
port's <ref column="options" key="nat-addresses"
table="Logical_Switch_Port"/> should be set to
<code>router</code>.
</p>
</column>
</group>
<group title="Attachment">
<p>
A given router port serves one of two purposes:
</p>
<ul>
<li>
To attach a logical switch to a logical router. A logical router
port of this type is referenced by exactly one <ref
table="Logical_Switch_Port"/> of type <code>router</code>.
The value of <ref column="name"/> is set as
<code>router-port</code> in column <ref column="options"/> of
<ref table="Logical_Switch_Port"/>. In this case <ref
column="peer"/> column is empty.
</li>
<li>
To connect one logical router to another. This requires a pair of
logical router ports, each connected to a different router. Each
router port in the pair specifies the other in its <ref
column="peer"/> column. No <ref table="Logical_Switch"/> refers to
the router port.
</li>
</ul>
<column name="peer">
<p>
For a router port used to connect two logical routers, this
identifies the other router port in the pair by <ref column="name"/>.
</p>
<p>
For a router port attached to a logical switch, this column is empty.
</p>
</column>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Logical_Router_Static_Route" title="Logical router static routes">
<p>
Each record represents a static route.
</p>
<p>
When multiple routes match a packet, the longest-prefix match is chosen.
For a given prefix length, a <code>dst-ip</code> route is preferred over
a <code>src-ip</code> route.
</p>
<column name="ip_prefix">
<p>
IP prefix of this route (e.g. 192.168.100.0/24).
</p>
</column>
<column name="policy">
<p>
If it is specified, this setting describes the policy used to make
routing decisions. This setting must be one of the following strings:
</p>
<ul>
<li>
<code>src-ip</code>: This policy sends the packet to the
<ref column="nexthop"/> when the packet's source IP address matches
<ref column="ip_prefix"/>.
</li>
<li>
<code>dst-ip</code>: This policy sends the packet to the
<ref column="nexthop"/> when the packet's destination IP address
matches <ref column="ip_prefix"/>.
</li>
</ul>
<p>
If not specified, the default is <code>dst-ip</code>.
</p>
</column>
<column name="nexthop">
<p>
Nexthop IP address for this route. Nexthop IP address should be the IP
address of a connected router port or the IP address of a logical port.
</p>
</column>
<column name="output_port">
<p>
The name of the <ref table="Logical_Router_Port"/> via which the packet
needs to be sent out. This is optional and when not specified,
OVN will automatically figure this out based on the
<ref column="nexthop"/>. When this is specified and there are
multiple IP addresses on the router port and none of them are in the
same subnet of <ref column="nexthop"/>, OVN chooses the first IP
address as the one via which the <ref column="nexthop"/> is reachable.
</p>
</column>
</table>
<table name="NAT" title="NAT rules">
<p>
Each record represents a NAT rule.
</p>
<column name="type">
<p>Type of the NAT rule.</p>
<ul>
<li>
When <ref column="type"/> is <code>dnat</code>, the externally
visible IP address <ref column="external_ip"/> is DNATted to the IP
address <ref column="logical_ip"/> in the logical space.
</li>
<li>
When <ref column="type"/> is <code>snat</code>, IP packets
with their source IP address that either matches the IP address
in <ref column="logical_ip"/> or is in the network provided by
<ref column="logical_ip"/> is SNATed into the IP address in
<ref column="external_ip"/>.
</li>
<li>
When <ref column="type"/> is <code>dnat_and_snat</code>, the
externally visible IP address <ref column="external_ip"/> is
DNATted to the IP address <ref column="logical_ip"/> in the
logical space. In addition, IP packets with the source IP
address that matches <ref column="logical_ip"/> is SNATed into
the IP address in <ref column="external_ip"/>.
</li>
</ul>
</column>
<column name="external_ip">
An IPv4 address.
</column>
<column name="external_mac">
<p>
A MAC address.
</p>
<p>
This is only used on the gateway port on distributed routers.
This must be specified in order for the NAT rule to be
processed in a distributed manner on all chassis. If this is
not specified for a NAT rule on a distributed router, then
this NAT rule will be processed in a centralized manner on
the gateway port instance on the <code>redirect-chassis</code>.
</p>
<p>
This MAC address must be unique on the logical switch that the
gateway port is attached to. If the MAC address used on the
<ref column="logical_port"/> is globally unique, then that MAC
address can be specified as this <ref column="external_mac"/>.
</p>
</column>
<column name="logical_ip">
An IPv4 network (e.g 192.168.1.0/24) or an IPv4 address.
</column>
<column name="logical_port">
<p>
The name of the logical port where the <ref column="logical_ip"/>
resides.
</p>
<p>
This is only used on distributed routers. This must be
specified in order for the NAT rule to be processed in a
distributed manner on all chassis. If this is not specified
for a NAT rule on a distributed router, then this NAT rule
will be processed in a centralized manner on the gateway
port instance on the <code>redirect-chassis</code>.
</p>
</column>
</table>
<table name="DHCP_Options" title="DHCP options">
<p>
OVN implements native DHCPv4 support which caters to the common
use case of providing an IPv4 address to a booting instance by
providing stateless replies to DHCPv4 requests based on statically
configured address mappings. To do this it allows a short list of
DHCPv4 options to be configured and applied at each compute host
running <code>ovn-controller</code>.
</p>
<p>
OVN also implements native DHCPv6 support which provides stateless
replies to DHCPv6 requests.
</p>
<column name="cidr">
<p>
The DHCPv4/DHCPv6 options will be included if the logical port has its
IP address in this <ref column="cidr"/>.
</p>
</column>
<group title="DHCPv4 options">
<p>
The CMS should define the set of DHCPv4 options as key/value pairs
in the <ref column="options"/> column of this table. For
<code>ovn-controller</code> to include these DHCPv4 options, the
<ref column="dhcpv4_options"/> of <ref table="Logical_Switch_Port"/>
should refer to an entry in this table.
</p>
<group title="Mandatory DHCPv4 options">
<p>
The following options must be defined.
</p>
<column name="options" key="server_id">
The IP address for the DHCP server to use. This should be in the
subnet of the offered IP. This is also included in the DHCP offer as
option 54, ``server identifier.''
</column>
<column name="options" key="server_mac">
The Ethernet address for the DHCP server to use.
</column>
<column name="options" key="lease_time"
type='{"type": "integer", "minInteger": 0, "maxInteger": 4294967295}'>
<p>
The offered lease time in seconds,
</p>
<p>
The DHCPv4 option code for this option is 51.
</p>
</column>
</group>
<group title="IPv4 DHCP Options">
<p>
Below are the supported DHCPv4 options whose values are an IPv4
address, e.g. <code>192.168.1.1</code>. Some options accept multiple
IPv4 addresses enclosed within curly braces, e.g. <code>{192.168.1.2,
192.168.1.3}</code>. Please refer to RFC 2132 for more details on
DHCPv4 options and their codes.
</p>
<column name="options" key="router">
<p>
The IP address of a gateway for the client to use. This should be
in the subnet of the offered IP. The DHCPv4 option code for this
option is 3.
</p>
</column>
<column name="options" key="netmask">
<p>
The DHCPv4 option code for this option is 1.
</p>
</column>
<column name="options" key="dns_server">
<p>
The DHCPv4 option code for this option is 6.
</p>
</column>
<column name="options" key="log_server">
<p>
The DHCPv4 option code for this option is 7.
</p>
</column>
<column name="options" key="lpr_server">
<p>
The DHCPv4 option code for this option is 9.
</p>
</column>
<column name="options" key="swap_server">
<p>
The DHCPv4 option code for this option is 16.
</p>
</column>
<column name="options" key="policy_filter">
<p>
The DHCPv4 option code for this option is 21.
</p>
</column>
<column name="options" key="router_solicitation">
<p>
The DHCPv4 option code for this option is 32.
</p>
</column>
<column name="options" key="nis_server">
<p>
The DHCPv4 option code for this option is 41.
</p>
</column>
<column name="options" key="ntp_server">
<p>
The DHCPv4 option code for this option is 42.
</p>
</column>
<column name="options" key="tftp_server">
<p>
The DHCPv4 option code for this option is 66.
</p>
</column>
<column name="options" key="classless_static_route">
<p>
The DHCPv4 option code for this option is 121.
</p>
<p>
This option can contain one or more static routes, each of which
consists of a destination descriptor and the IP address of the
router that should be used to reach that destination. Please see
RFC 3442 for more details.
</p>
<p>
Example: <code>{30.0.0.0/24,10.0.0.10, 0.0.0.0/0,10.0.0.1}</code>
</p>
</column>
<column name="options" key="ms_classless_static_route">
<p>
The DHCPv4 option code for this option is 249. This option is
similar to <code>classless_static_route</code> supported by
Microsoft Windows DHCPv4 clients.
</p>
</column>
</group>
<group title="Boolean DHCP Options">
<p>
These options accept a Boolean value, expressed as <code>0</code> for
false or <code>1</code> for true.
</p>
<column name="options" key="ip_forward_enable"
type='{"type": "string", "enum": ["set", ["0", "1"]]}'>
<p>
The DHCPv4 option code for this option is 19.
</p>
</column>
<column name="options" key="router_discovery"
type='{"type": "string", "enum": ["set", ["0", "1"]]}'>
<p>
The DHCPv4 option code for this option is 31.
</p>
</column>
<column name="options" key="ethernet_encap"
type='{"type": "string", "enum": ["set", ["0", "1"]]}'>
<p>
The DHCPv4 option code for this option is 36.
</p>
</column>
</group>
<group title="Integer DHCP Options">
<p>
These options accept a nonnegative integer value.
</p>
<column name="options" key="default_ttl"
type='{"type": "integer", "minInteger": 0, "maxInteger": 255}'>
The DHCPv4 option code for this option is 23.
</column>
<column name="options" key="tcp_ttl"
type='{"type": "integer", "minInteger": 0, "maxInteger": 255}'>
The DHCPv4 option code for this option is 37.
</column>
<column name="options" key="mtu"
type='{"type": "integer", "minInteger": 68, "maxInteger": 65535}'>
The DHCPv4 option code for this option is 26.
</column>
<column name="options" key="T1"
type='{"type": "integer", "minInteger": 68, "maxInteger": 4294967295}'>
This specifies the time interval from address assignment until the
client begins trying to renew its address. The DHCPv4 option code
for this option is 58.
</column>
<column name="options" key="T2"
type='{"type": "integer", "minInteger": 68, "maxInteger": 4294967295}'>
This specifies the time interval from address assignment until the
client begins trying to rebind its address. The DHCPv4 option code
for this option is 59.
</column>
</group>
</group>
<group title="DHCPv6 options">
<p>
OVN also implements native DHCPv6 support. The CMS should define
the set of DHCPv6 options as key/value pairs. The define DHCPv6
options will be included in the DHCPv6 response to the DHCPv6
Solicit/Request/Confirm packet from the logical ports having the
IPv6 addresses in the <ref column="cidr"/>.
</p>
<group title="Mandatory DHCPv6 options">
<p>
The following options must be defined.
</p>
<column name="options" key="server_id">
<p>
The Ethernet address for the DHCP server to use. This is also
included in the DHCPv6 reply as option 2, ``Server Identifier''
to carry a DUID identifying a server between a client and a server.
<code>ovn-controller</code> defines DUID based on
Link-layer Address [DUID-LL].
</p>
</column>
</group>
<group title="IPv6 DHCPv6 options">
<p>
Below are the supported DHCPv6 options whose values are an IPv6
address, e.g. <code>aef0::4</code>. Some options accept multiple
IPv6 addresses enclosed within curly braces, e.g. <code>{aef0::4,
aef0::5}</code>. Please refer to RFC 3315 for more details on
DHCPv6 options and their codes.
</p>
<column name="options" key="dns_server">
<p>
The DHCPv6 option code for this option is 23. This option specifies
the DNS servers that the VM should use.
</p>
</column>
</group>
<group title="String DHCPv6 options">
<p>
These options accept string values.
</p>
<column name="options" key="domain_search">
<p>
The DHCPv6 option code for this option is 24. This option specifies
the domain search list the client should use to resolve hostnames
with DNS.
</p>
<p>
Example: <code>"ovn.org"</code>.
</p>
</column>
<column name="options" key="dhcpv6_stateless">
<p>
This option specifies the OVN native DHCPv6 will work in stateless
mode, which means OVN native DHCPv6 will not offer IPv6 addresses
for VM/VIF ports, but only reply other configurations, such as
DNS and domain search list. When setting this option with string
value "true", VM/VIF will configure IPv6 addresses by stateless
way. Default value for this option is false.
</p>
</column>
</group>
</group>
<group title="Common Columns">
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</group>
</table>
<table name="Connection" title="OVSDB client connections.">
<p>
Configuration for a database connection to an Open vSwitch database
(OVSDB) client.
</p>
<p>
This table primarily configures the Open vSwitch database server
(<code>ovsdb-server</code>).
</p>
<p>
The Open vSwitch database server can initiate and maintain active
connections to remote clients. It can also listen for database
connections.
</p>
<group title="Core Features">
<column name="target">
<p>Connection methods for clients.</p>
<p>
The following connection methods are currently supported:
</p>
<dl>
<dt><code>ssl:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
<dd>
<p>
The specified SSL <var>port</var> on the host at the given
<var>ip</var>, which must be expressed as an IP address
(not a DNS name). A valid SSL configuration must be provided
when this form is used, this configuration can be specified
via command-line options or the <ref table="SSL"/> table.
</p>
<p>
If <var>port</var> is not specified, it defaults to 6640.
</p>
<p>
SSL support is an optional feature that is not always
built as part of Open vSwitch.
</p>
</dd>
<dt><code>tcp:<var>ip</var></code>[<code>:<var>port</var></code>]</dt>
<dd>
<p>
The specified TCP <var>port</var> on the host at the given
<var>ip</var>, which must be expressed as an IP address (not a
DNS name), where <var>ip</var> can be IPv4 or IPv6 address. If
<var>ip</var> is an IPv6 address, wrap it in square brackets,
e.g. <code>tcp:[::1]:6640</code>.
</p>
<p>
If <var>port</var> is not specified, it defaults to 6640.
</p>
</dd>
<dt><code>pssl:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
<dd>
<p>
Listens for SSL connections on the specified TCP <var>port</var>.
Specify 0 for <var>port</var> to have the kernel automatically
choose an available port. If <var>ip</var>, which must be
expressed as an IP address (not a DNS name), is specified, then
connections are restricted to the specified local IP address
(either IPv4 or IPv6 address). If <var>ip</var> is an IPv6
address, wrap in square brackets,
e.g. <code>pssl:6640:[::1]</code>. If <var>ip</var> is not
specified then it listens only on IPv4 (but not IPv6) addresses.
A valid SSL configuration must be provided when this form is used,
this can be specified either via command-line options or the
<ref table="SSL"/> table.
</p>
<p>
If <var>port</var> is not specified, it defaults to 6640.
</p>
<p>
SSL support is an optional feature that is not always built as
part of Open vSwitch.
</p>
</dd>
<dt><code>ptcp:</code>[<var>port</var>][<code>:<var>ip</var></code>]</dt>
<dd>
<p>
Listens for connections on the specified TCP <var>port</var>.
Specify 0 for <var>port</var> to have the kernel automatically
choose an available port. If <var>ip</var>, which must be
expressed as an IP address (not a DNS name), is specified, then
connections are restricted to the specified local IP address
(either IPv4 or IPv6 address). If <var>ip</var> is an IPv6
address, wrap it in square brackets,
e.g. <code>ptcp:6640:[::1]</code>. If <var>ip</var> is not
specified then it listens only on IPv4 addresses.
</p>
<p>
If <var>port</var> is not specified, it defaults to 6640.
</p>
</dd>
</dl>
<p>When multiple clients are configured, the <ref column="target"/>
values must be unique. Duplicate <ref column="target"/> values yield
unspecified results.</p>
</column>
</group>
<group title="Client Failure Detection and Handling">
<column name="max_backoff">
Maximum number of milliseconds to wait between connection attempts.
Default is implementation-specific.
</column>
<column name="inactivity_probe">
Maximum number of milliseconds of idle time on connection to the client
before sending an inactivity probe message. If Open vSwitch does not
communicate with the client for the specified number of seconds, it
will send a probe. If a response is not received for the same
additional amount of time, Open vSwitch assumes the connection has been
broken and attempts to reconnect. Default is implementation-specific.
A value of 0 disables inactivity probes.
</column>
</group>
<group title="Status">
<p>
Key-value pair of <ref column="is_connected"/> is always updated.
Other key-value pairs in the status columns may be updated depends
on the <ref column="target"/> type.
</p>
<p>
When <ref column="target"/> specifies a connection method that
listens for inbound connections (e.g. <code>ptcp:</code> or
<code>punix:</code>), both <ref column="n_connections"/> and
<ref column="is_connected"/> may also be updated while the
remaining key-value pairs are omitted.
</p>
<p>
On the other hand, when <ref column="target"/> specifies an
outbound connection, all key-value pairs may be updated, except
the above-mentioned two key-value pairs associated with inbound
connection targets. They are omitted.
</p>
<column name="is_connected">
<code>true</code> if currently connected to this client,
<code>false</code> otherwise.
</column>
<column name="status" key="last_error">
A human-readable description of the last error on the connection
to the manager; i.e. <code>strerror(errno)</code>. This key
will exist only if an error has occurred.
</column>
<column name="status" key="state"
type='{"type": "string", "enum": ["set", ["VOID", "BACKOFF", "CONNECTING", "ACTIVE", "IDLE"]]}'>
<p>
The state of the connection to the manager:
</p>
<dl>
<dt><code>VOID</code></dt>
<dd>Connection is disabled.</dd>
<dt><code>BACKOFF</code></dt>
<dd>Attempting to reconnect at an increasing period.</dd>
<dt><code>CONNECTING</code></dt>
<dd>Attempting to connect.</dd>
<dt><code>ACTIVE</code></dt>
<dd>Connected, remote host responsive.</dd>
<dt><code>IDLE</code></dt>
<dd>Connection is idle. Waiting for response to keep-alive.</dd>
</dl>
<p>
These values may change in the future. They are provided only for
human consumption.
</p>
</column>
<column name="status" key="sec_since_connect"
type='{"type": "integer", "minInteger": 0}'>
The amount of time since this client last successfully connected
to the database (in seconds). Value is empty if client has never
successfully been connected.
</column>
<column name="status" key="sec_since_disconnect"
type='{"type": "integer", "minInteger": 0}'>
The amount of time since this client last disconnected from the
database (in seconds). Value is empty if client has never
disconnected.
</column>
<column name="status" key="locks_held">
Space-separated list of the names of OVSDB locks that the connection
holds. Omitted if the connection does not hold any locks.
</column>
<column name="status" key="locks_waiting">
Space-separated list of the names of OVSDB locks that the connection is
currently waiting to acquire. Omitted if the connection is not waiting
for any locks.
</column>
<column name="status" key="locks_lost">
Space-separated list of the names of OVSDB locks that the connection
has had stolen by another OVSDB client. Omitted if no locks have been
stolen from this connection.
</column>
<column name="status" key="n_connections"
type='{"type": "integer", "minInteger": 2}'>
When <ref column="target"/> specifies a connection method that
listens for inbound connections (e.g. <code>ptcp:</code> or
<code>pssl:</code>) and more than one connection is actually active,
the value is the number of active connections. Otherwise, this
key-value pair is omitted.
</column>
<column name="status" key="bound_port" type='{"type": "integer"}'>
When <ref column="target"/> is <code>ptcp:</code> or
<code>pssl:</code>, this is the TCP port on which the OVSDB server is
listening. (This is particularly useful when <ref
column="target"/> specifies a port of 0, allowing the kernel to
choose any available port.)
</column>
</group>
<group title="Common Columns">
The overall purpose of these columns is described under <code>Common
Columns</code> at the beginning of this document.
<column name="external_ids"/>
<column name="other_config"/>
</group>
</table>
<table name="DNS" title="Native DNS resolution">
<p>
Each row in this table stores the DNS records. The
<ref table="Logical_Switch"/> table's <ref table="Logical_Switch"
column="dns_records"/> references these records.
</p>
<column name="records">
Key-value pair of DNS records with <code>DNS query name</code> as the key
and value as a string of IP address(es) separated by comma or space.
<p><b>Example: </b> "vm1.ovn.org" = "10.0.0.4 aef0::4"</p>
</column>
<column name="external_ids">
See <em>External IDs</em> at the beginning of this document.
</column>
</table>
<table name="SSL">
SSL configuration for ovn-nb database access.
<column name="private_key">
Name of a PEM file containing the private key used as the switch's
identity for SSL connections to the controller.
</column>
<column name="certificate">
Name of a PEM file containing a certificate, signed by the
certificate authority (CA) used by the controller and manager,
that certifies the switch's private key, identifying a trustworthy
switch.
</column>
<column name="ca_cert">
Name of a PEM file containing the CA certificate used to verify
that the switch is connected to a trustworthy controller.
</column>
<column name="bootstrap_ca_cert">
If set to <code>true</code>, then Open vSwitch will attempt to
obtain the CA certificate from the controller on its first SSL
connection and save it to the named PEM file. If it is successful,
it will immediately drop the connection and reconnect, and from then
on all SSL connections must be authenticated by a certificate signed
by the CA certificate thus obtained. <em>This option exposes the
SSL connection to a man-in-the-middle attack obtaining the initial
CA certificate.</em> It may still be useful for bootstrapping.
</column>
<group title="Common Columns">
The overall purpose of these columns is described under <code>Common
Columns</code> at the beginning of this document.
<column name="external_ids"/>
</group>
</table>
</database>
|