module dot1Qv2-PB { namespace "ieee:ns:yang:ieee-dot1Q-PB"; prefix "dot1Q-PB"; import dot1Qv2 {prefix dot1Q; } import ieee-types { prefix ieee; } augment "/dot1Q:bridge/dot1Q:interfaces" { leaf pb-type { description "To obtain information regarding the designated type of an externally accessible port on a Provider Bridge."; type dot1Q:portType; } container network-port-vid-translation-table-entry { description "The VID Translation Table, which provides a bidirectional mapping between a local S-VID (used in data and protocol frames transmitted and received through this Customer Network Port or Provider Network Port) and a relay S-VID (used by the filtering and forwarding processes of the S-VLAN component in a Provider Bridge)."; leaf local-vid { type ieee:vlanid; } leaf relay-vid { type ieee:vlanid; } } container customer-edge-port-cvid-registration-table { description "The C-VID Registration Table, which provides a mapping between a Customer VLAN Identifier (C-VID) and the service instance represented by a Service VLAN Identifier (S-VID) selected for that C-VLAN. This table provides the equivalent functionality of 1) Configuring the PVID of the internal Customer Network Port on the S-VLAN component; 2) Adding the corresponding Provider Edge Port on the C-VLAN component to the member set of the C-VLAN; 3) Adding the Provider Edge Port and/or Customer Edge Port to the untagged set of the C-VLAN (if it is desired that frames forwarded to that port are transmitted untagged for this C-VLAN)."; leaf cvid { type ieee:vlanid; } leaf svid { type ieee:vlanid; } leaf untagged-PEP { type boolean; } leaf untagged-CEP { type boolean; } } container provider-edge-port { description "The Provider Edge Port configuration parameters, which provide the subset of the Bridge VLAN Configuration managed object (12.10.1) that is relevant for the internal ports of the C-VLAN component associated with the Customer Edge Port."; leaf svid { type ieee:vlanid; } } container service-priority-regeneration-table { description "The Service Priority Regeneration Table, which provides the Priority Regeneration Table (12.6.2) for each internal Customer Network Port connected to the C-VLAN component associated with the Customer Edge Port."; leaf svid { type ieee:vlanid; } } } }