Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   ovn-nb    ( 5 )

схема базы данных OVN_Northbound (OVN_Northbound database schema)

Address_Set TABLE

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 ip4.src or
       ip6.src. 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:

ovn-nbctl create Address_Set name=set1 addresses='10.0.0.1 10.0.0.2 10.0.0.3'

Address sets may be used in the match column of the ACL table. For syntax information, see the details of the expression language used for the match column in the Logical_Flow table of the OVN_Southbound database.

Summary: name string (must be unique within table) addresses set of strings Common Columns: external_ids map of string-string pairs

Details: name: string (must be unique within table) A name for the address set. Names are ASCII and must match [a-zA-Z_.][a-zA-Z_.0-9]*.

addresses: set of strings The set of addresses in string form.

Common Columns:

external_ids: map of string-string pairs See External IDs at the beginning of this document.