分析下面报文的作用<create-eth-to-eth-connection xmlns="urn:ccsa:yang:acc-eth" xmlns:acc-eth="urn:ccsa:yang:acc-eth"> <connection-name>CONNECTION=ETH1</connection-name> <service-label>eth-to-eth-test2</service-label> <service-type>EVPL</service-type> <layer-protocol-name>acc-eth:ETH</layer-protocol-name> <requested-capacity> <total-size>500</total-size> <cir>300</cir> <pir>300</pir> <cbs>300</cbs> <pbs>300</pbs> </requested-capacity> <eth-uni> <uni-ptp-name>PTP=/shelf=1/slot=1/subslot=1/port=3</uni-ptp-name> <client-vlan-spec> <vlan-id>100</vlan-id> <vlan-priority>3</vlan-priority> <access-action>keep</access-action> <vlan-type>c-tag</vlan-type> </client-vlan-spec> <uni-vlan-spec> <vlan-id>10</vlan-id> <vlan-priority>2</vlan-priority> <access-action>exchange</access-action> <vlan-type>s-tag</vlan-type> </uni-vlan-spec> <nni-vlan-spec> <vlan-id>20</vlan-id> <vlan-priority>1</vlan-priority> <access-action>exchange</access-action> <vlan-type>s-tag</vlan-type> </nni-vlan-spec> <eth-type>1000MFullDuplex</eth-type> </eth-uni> <primary-eth-nni> <nni-ptp-name>PTP=/shelf=1/slot=1/subslot=1/port=4</nni-ptp-name> </primary-eth-nni> </create-eth-to-eth-connection>
时间: 2023-08-17 15:53:06 浏览: 211
这个报文是用来创建以太网到以太网连接的。报文中包含了一些元素和属性,用于描述这个连接的各种参数和配置。
- `<connection-name>`指定了连接的名称为"CONNECTION=ETH1"。
- `<service-label>`指定了服务的标签为"eth-to-eth-test2"。
- `<service-type>`指定了服务的类型为"EVPL"。
- `<layer-protocol-name>`指定了层协议的名称为"acc-eth:ETH"。
- `<requested-capacity>`指定了请求的容量,包括总大小、CIR、PIR、CBS和PBS等参数。
- `<eth-uni>`指定了以太网用户网络接口的配置,包括UNI端口名称、客户端VLAN和UNI VLAN等信息。
- `<primary-eth-nni>`指定了主要的以太网NNI(网络到网络接口)端口名称。
通过这个报文,可以创建一个以太网到以太网的连接,并配置各种参数和接口信息。
阅读全文