diff --git a/Changelog.md b/Changelog.md
index 3d762455daee6ef5b6774d28039cdbcf2537a420..e70f48aa142bab8a0ea2456484c4d10a34fefde7 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,6 +2,9 @@
 
 All notable changes to this project will be documented in this file.
 
+## [0.13] - 2025-01-15
+- FIX: Retrieve additional required netconf data from Nokia routers
+
 ## [0.12] - 2025-01-13
 - POL1-876: Add additional Nokia error counters to influx and error report
 
diff --git a/brian_polling_manager/interface_stats/vendors/nokia.py b/brian_polling_manager/interface_stats/vendors/nokia.py
index 0dbe6f9e7f559793a63cf53b8255d3d2b7d8e39b..e0db4471c92d966f64c4877d41486baa4334dac0 100644
--- a/brian_polling_manager/interface_stats/vendors/nokia.py
+++ b/brian_polling_manager/interface_stats/vendors/nokia.py
@@ -90,7 +90,7 @@ def get_netconf_interface_info(
     """
 
     query_path = {
-        "port": ["port", "statistics"],
+        "port": ["port", ["statistics", "ethernet"]],
         "lag": ["lag", "statistics"],
         "router-interface": ["router", "interface"],
     }
@@ -110,8 +110,16 @@ def query(connection, *path):
     sub_elem = etree.SubElement(
         root, f"{{{STATE_NS}}}state", nsmap={"nokia-state": STATE_NS}
     )
+    is_leaf = False
     for p in path:
-        sub_elem = etree.SubElement(sub_elem, f"{{{STATE_NS}}}{p}")
+        if is_leaf:
+            raise ValueError("Can only have multiple nodes as leaf elements in path")
+        if isinstance(p, str):
+            sub_elem = etree.SubElement(sub_elem, f"{{{STATE_NS}}}{p}")
+        else:
+            is_leaf = True
+            for item in p:
+                etree.SubElement(sub_elem, f"{{{STATE_NS}}}{item}")
 
     return connection.get(filter=root)
 
diff --git a/setup.py b/setup.py
index 48f7deb65a93831bc213caa04d7950495022f783..685499a6295402f54981056757ffee18a3bd70a8 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
 
 setup(
     name='brian-polling-manager',
-    version="0.12",
+    version="0.13",
     author='GEANT',
     author_email='swd@geant.org',
     description='service for managing BRIAN polling checks',
diff --git a/test/interface_stats/data/capture-test-data-nokia.py b/test/interface_stats/data/capture-test-data-nokia.py
index 6de47001c2a0457e07ed12c290eee68ffceb6d14..d4993568c0f4f9e581bb1a64e0f68c53a291ccc1 100644
--- a/test/interface_stats/data/capture-test-data-nokia.py
+++ b/test/interface_stats/data/capture-test-data-nokia.py
@@ -8,9 +8,16 @@ logging.basicConfig(level=logging.DEBUG)
 ncclient_logger = logging.getLogger("ncclient")
 ncclient_logger.level = logging.WARNING
 
-ROUTERS = ["rt0.lon.uk.lab.office.geant.net", "rt0.ams.nl.lab.office.geant.net"]
-
-SSH_PARAMS = {"ssh_config": "~/.ssh/config.d/routers-jump"}
+ROUTERS = [
+    "rt0.ams.nl.geant.net",
+]
+
+SSH_PARAMS = {
+    "ssh_config": "~/.ssh/config",
+    "hostkey_verify": False,
+    "username": "inprov",
+    "password": "<password>",
+}
 
 
 def load_estate_interface_info():
diff --git a/test/interface_stats/data/rt0.ams.nl.geant.net-lags.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-lags.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7d645e4915d6443da680daa48f8fa2d299c6e55d
--- /dev/null
+++ b/test/interface_stats/data/rt0.ams.nl.geant.net-lags.xml
@@ -0,0 +1,106 @@
+<rpc-reply message-id="urn:uuid:de93eb4e-7458-41dd-911e-e7fd9021f95e">
+  <data>
+    <state>
+      <lag>
+        <lag-name>lag-3</lag-name>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>4262911680743558</in-octets>
+          <in-packets>4131460943831</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>14543</in-broadcast-packets>
+          <in-multicast-packets>31651048</in-multicast-packets>
+          <in-unicast-packets>4131429278240</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>6143111971753298</out-octets>
+          <out-packets>4585754847713</out-packets>
+          <out-broadcast-packets>82</out-broadcast-packets>
+          <out-multicast-packets>131933931835</out-multicast-packets>
+          <out-unicast-packets>4453820915796</out-unicast-packets>
+        </statistics>
+      </lag>
+      <lag>
+        <lag-name>lag-4</lag-name>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>78688699170263699</in-octets>
+          <in-packets>69237004327539</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>1895</in-broadcast-packets>
+          <in-multicast-packets>7033982258</in-multicast-packets>
+          <in-unicast-packets>69229970343386</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>72222434098076111</out-octets>
+          <out-packets>61199416865411</out-packets>
+          <out-broadcast-packets>16</out-broadcast-packets>
+          <out-multicast-packets>797774566690</out-multicast-packets>
+          <out-unicast-packets>60401642298705</out-unicast-packets>
+        </statistics>
+      </lag>
+      <lag>
+        <lag-name>lag-5</lag-name>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>146841456717876906</in-octets>
+          <in-packets>123954876108483</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>14676</in-broadcast-packets>
+          <in-multicast-packets>49671763</in-multicast-packets>
+          <in-unicast-packets>123954826422044</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>101696790878608621</out-octets>
+          <out-packets>85739232991110</out-packets>
+          <out-broadcast-packets>2</out-broadcast-packets>
+          <out-multicast-packets>765302691551</out-multicast-packets>
+          <out-unicast-packets>84973930299557</out-unicast-packets>
+        </statistics>
+      </lag>
+      <lag>
+        <lag-name>lag-8</lag-name>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>112255955714300782</in-octets>
+          <in-packets>86277548109089</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>4449</in-broadcast-packets>
+          <in-multicast-packets>802961090615</in-multicast-packets>
+          <in-unicast-packets>85474587014025</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>141323252913094017</out-octets>
+          <out-packets>118405624891620</out-packets>
+          <out-broadcast-packets>56</out-broadcast-packets>
+          <out-multicast-packets>51205870</out-multicast-packets>
+          <out-unicast-packets>118405573685694</out-unicast-packets>
+        </statistics>
+      </lag>
+      <lag>
+        <lag-name>lag-9</lag-name>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>30605692942167200</in-octets>
+          <in-packets>23850931371932</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>7443</in-broadcast-packets>
+          <in-multicast-packets>81986733</in-multicast-packets>
+          <in-unicast-packets>23850849377756</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>52021331246724118</out-octets>
+          <out-packets>38480105732702</out-packets>
+          <out-broadcast-packets>30</out-broadcast-packets>
+          <out-multicast-packets>73536726606</out-multicast-packets>
+          <out-unicast-packets>38406569006066</out-unicast-packets>
+        </statistics>
+      </lag>
+    </state>
+  </data>
+</rpc-reply>
\ No newline at end of file
diff --git a/test/interface_stats/data/rt0.ams.nl.geant.net-ports.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-ports.xml
new file mode 100644
index 0000000000000000000000000000000000000000..59237a6a266d9adfda4dda142cd7b5867617d2cc
--- /dev/null
+++ b/test/interface_stats/data/rt0.ams.nl.geant.net-ports.xml
@@ -0,0 +1,43263 @@
+<rpc-reply message-id="urn:uuid:75a2b5eb-06f8-45f1-8951-9f0cc77262e2">
+  <data>
+    <state>
+      <port>
+        <port-id>1/1/c1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c1/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-25T08:04:28.9Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-25T08:04:28.9Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>55</in-errors>
+          <in-octets>56885605026660750</in-octets>
+          <in-packets>43620594231450</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>117</in-broadcast-packets>
+          <in-multicast-packets>292791229312</in-multicast-packets>
+          <in-unicast-packets>43327803002021</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>72157989158748288</out-octets>
+          <out-packets>61726240588828</out-packets>
+          <out-broadcast-packets>52</out-broadcast-packets>
+          <out-multicast-packets>28738286</out-multicast-packets>
+          <out-unicast-packets>61726211850490</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>69</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>117</in-broadcast-packets>
+            <in-multicast-packets>292791229312</in-multicast-packets>
+            <in-unicast-packets>43327803002021</in-unicast-packets>
+            <in-errors>55</in-errors>
+            <in-octets>56885605026660750</in-octets>
+            <in-utilization>787</in-utilization>
+            <out-broadcast-packets>52</out-broadcast-packets>
+            <out-multicast-packets>28738286</out-multicast-packets>
+            <out-unicast-packets>61726211850490</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>72157989158748288</out-octets>
+            <out-utilization>1177</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>18</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>24</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>169</total-broadcast-packets>
+            <total-multicast-packets>292819967598</total-multicast-packets>
+            <total-octets>129043594185409038</total-octets>
+            <total-packets>105346834820278</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>13</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>18</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>676898422580</octets-64>
+              <octets-65-to-127>17738958471275</octets-65-to-127>
+              <octets-128-to-255>1809964455121</octets-128-to-255>
+              <octets-256-to-511>1076604533690</octets-256-to-511>
+              <octets-512-to-1023>1360280737913</octets-512-to-1023>
+              <octets-1024-to-1518>17826378878825</octets-1024-to-1518>
+              <octets-1519-to-max>64857749320874</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>2225593778</remote-time-mark>
+                <remote-index>78</remote-index>
+                <age>2534353</age>
+                <chassis-id>E0:CB:19:8F:44:88</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899521</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c1/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | TO RT0.AMS.NL- 1/1/c1/1 "</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.fra.de</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>580344</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>9</age-outs>
+                  <frames>594712</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>766500</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c2/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>790629448</in-octets>
+          <in-packets>6589082</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>335</in-broadcast-packets>
+          <in-multicast-packets>562600</in-multicast-packets>
+          <in-unicast-packets>6026147</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>15628711662</out-octets>
+          <out-packets>32729537</out-packets>
+          <out-broadcast-packets>3</out-broadcast-packets>
+          <out-multicast-packets>574760</out-multicast-packets>
+          <out-unicast-packets>32154774</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>remote</current-alarms>
+          <reported-alarms>remote</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>4</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>''</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>335</in-broadcast-packets>
+            <in-multicast-packets>562600</in-multicast-packets>
+            <in-unicast-packets>6026147</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>790629448</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>3</out-broadcast-packets>
+            <out-multicast-packets>574760</out-multicast-packets>
+            <out-unicast-packets>32154774</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>15628711662</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>338</total-broadcast-packets>
+            <total-multicast-packets>1137360</total-multicast-packets>
+            <total-octets>16419341110</total-octets>
+            <total-packets>39318619</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>434671</octets-64>
+              <octets-65-to-127>18515104</octets-65-to-127>
+              <octets-128-to-255>5820635</octets-128-to-255>
+              <octets-256-to-511>5606100</octets-256-to-511>
+              <octets-512-to-1023>1600823</octets-512-to-1023>
+              <octets-1024-to-1518>4030631</octets-1024-to-1518>
+              <octets-1519-to-max>3310655</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>13708</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>14821</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>59284</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c2/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>99</in-errors>
+          <in-octets>656420228</in-octets>
+          <in-packets>6308209</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>425886</in-multicast-packets>
+          <in-unicast-packets>5882323</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>17118191398</out-octets>
+          <out-packets>33771508</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>425639</out-multicast-packets>
+          <out-unicast-packets>33345869</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>remote</current-alarms>
+          <reported-alarms>remote</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>4</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>''</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>425886</in-multicast-packets>
+            <in-unicast-packets>5882323</in-unicast-packets>
+            <in-errors>99</in-errors>
+            <in-octets>656420228</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>425639</out-multicast-packets>
+            <out-unicast-packets>33345869</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>17118191398</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>29</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>41</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>851525</total-multicast-packets>
+            <total-octets>17774611626</total-octets>
+            <total-packets>40079717</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>29</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>291226</octets-64>
+              <octets-65-to-127>16733536</octets-65-to-127>
+              <octets-128-to-255>6705374</octets-128-to-255>
+              <octets-256-to-511>5980524</octets-256-to-511>
+              <octets-512-to-1023>2507482</octets-512-to-1023>
+              <octets-1024-to-1518>4435174</octets-1024-to-1518>
+              <octets-1519-to-max>3426401</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>13707</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>14816</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>59264</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c2/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c2/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c4/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c4/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c4/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c4/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c5</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c5/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-25T08:04:28.9Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-25T08:04:28.9Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>17</in-errors>
+          <in-octets>55370325244634895</in-octets>
+          <in-packets>42656931031611</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>4332</in-broadcast-packets>
+          <in-multicast-packets>510169586812</in-multicast-packets>
+          <in-unicast-packets>42146761440467</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>69165196989839961</out-octets>
+          <out-packets>56679329631879</out-packets>
+          <out-broadcast-packets>4</out-broadcast-packets>
+          <out-multicast-packets>22467543</out-multicast-packets>
+          <out-unicast-packets>56679307164332</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>69</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>4332</in-broadcast-packets>
+            <in-multicast-packets>510169586812</in-multicast-packets>
+            <in-unicast-packets>42146761440467</in-unicast-packets>
+            <in-errors>17</in-errors>
+            <in-octets>55370325244634895</in-octets>
+            <in-utilization>604</in-utilization>
+            <out-broadcast-packets>4</out-broadcast-packets>
+            <out-multicast-packets>22467543</out-multicast-packets>
+            <out-unicast-packets>56679307164332</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>69165196989839961</out-octets>
+            <out-utilization>1098</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>9</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>6</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>4336</total-broadcast-packets>
+            <total-multicast-packets>510192054355</total-multicast-packets>
+            <total-octets>124535522234474856</total-octets>
+            <total-packets>99336260663490</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>2</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>9</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>680724976340</octets-64>
+              <octets-65-to-127>14986783078381</octets-65-to-127>
+              <octets-128-to-255>1541451909153</octets-128-to-255>
+              <octets-256-to-511>973603017701</octets-256-to-511>
+              <octets-512-to-1023>1269551559547</octets-512-to-1023>
+              <octets-1024-to-1518>16762930584782</octets-1024-to-1518>
+              <octets-1519-to-max>63121215537586</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>2225593798</remote-time-mark>
+                <remote-index>79</remote-index>
+                <age>2534352</age>
+                <chassis-id>E0:CB:19:8F:44:88</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899777</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c5/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | TO RT0.AMS.NL- 1/1/c5/1"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.fra.de</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>580323</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>9</age-outs>
+                  <frames>594687</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>766396</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c6</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c7</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c7/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c8</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c8/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T10:21:54.8Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T10:21:54.8Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>13</in-errors>
+          <in-octets>4262911293849876</in-octets>
+          <in-packets>4131459726802</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>14543</in-broadcast-packets>
+          <in-multicast-packets>31651035</in-multicast-packets>
+          <in-unicast-packets>4131428061224</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>6143109642914334</out-octets>
+          <out-packets>4585753156357</out-packets>
+          <out-broadcast-packets>82</out-broadcast-packets>
+          <out-multicast-packets>131933847867</out-multicast-packets>
+          <out-unicast-packets>4453819308408</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>87</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-3 | AMS-BRU | to AMS01-GRV6 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>14543</in-broadcast-packets>
+            <in-multicast-packets>31651035</in-multicast-packets>
+            <in-unicast-packets>4131428061224</in-unicast-packets>
+            <in-errors>13</in-errors>
+            <in-octets>4262911293849876</in-octets>
+            <in-utilization>93</in-utilization>
+            <out-broadcast-packets>82</out-broadcast-packets>
+            <out-multicast-packets>131933847867</out-multicast-packets>
+            <out-unicast-packets>4453819308408</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>6143109642914334</out-octets>
+            <out-utilization>410</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>2</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>5</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>14625</total-broadcast-packets>
+            <total-multicast-packets>131965498902</total-multicast-packets>
+            <total-octets>10406020936764210</total-octets>
+            <total-packets>8717212883159</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>6</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>2</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>91678868257</octets-64>
+              <octets-65-to-127>1500171649879</octets-65-to-127>
+              <octets-128-to-255>152527759809</octets-128-to-255>
+              <octets-256-to-511>62668270972</octets-256-to-511>
+              <octets-512-to-1023>150071952799</octets-512-to-1023>
+              <octets-1024-to-1518>4287675056800</octets-1024-to-1518>
+              <octets-1519-to-max>2472419324643</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>2227046278</remote-time-mark>
+                <remote-index>80</remote-index>
+                <age>2519828</age>
+                <chassis-id>E4:5D:37:87:3D:80</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>et-0/0/2</remote-port-id>
+                <remote-port-id-subtype>interface-name</remote-port-id-subtype>
+                <port-description>PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-BRU | </port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description>Juniper Networks, Inc. JNP204 [MX204] internet router, kernel JUNOS 20.4R3-S4.8, Build date: 2022-08-16 20:38:05 UTC Copyright (c) 1996-2022 Juniper Networks, Inc.</system-description>
+                <system-name>rt1.bru.be.re0.geant.net</system-name>
+                <mgmt-address>
+                  <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+                  <mgmt-address>172.16.254.2</mgmt-address>
+                  <interface-subtype>if-index</interface-subtype>
+                  <interface-id>1</interface-id>
+                  <object-identifier>16975361.33627905.16843009</object-identifier>
+                </mgmt-address>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>580399</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>8</age-outs>
+                  <frames>627290</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>2509160</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c8/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c9</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c9/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c9/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c10</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c10/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c11</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c11/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c11/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c12</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c12/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c12/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c13</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c13/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c14</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c14/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c14/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c14/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c14/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c15</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c16</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c16/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c16/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c16/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c16/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c17</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c17/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c18</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c19</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c19/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-25T09:02:23.0Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-25T09:02:23.0Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>74613081974788812</in-octets>
+          <in-packets>62793767370691</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>14676</in-broadcast-packets>
+          <in-multicast-packets>28035974</in-multicast-packets>
+          <in-unicast-packets>62793739320041</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>44914536105714406</out-octets>
+          <out-packets>34897860071968</out-packets>
+          <out-broadcast-packets>2</out-broadcast-packets>
+          <out-multicast-packets>409093384649</out-multicast-packets>
+          <out-unicast-packets>34488766687317</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>1</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to RT1.AMS et-7/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>14676</in-broadcast-packets>
+            <in-multicast-packets>28035974</in-multicast-packets>
+            <in-unicast-packets>62793739320041</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>74613081974788812</in-octets>
+            <in-utilization>1131</in-utilization>
+            <out-broadcast-packets>2</out-broadcast-packets>
+            <out-multicast-packets>409093384649</out-multicast-packets>
+            <out-unicast-packets>34488766687317</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>44914536105714406</out-octets>
+            <out-utilization>673</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>14678</total-broadcast-packets>
+            <total-multicast-packets>409121420623</total-multicast-packets>
+            <total-octets>119527618080503218</total-octets>
+            <total-packets>97691627442659</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>1069456785148</octets-64>
+              <octets-65-to-127>16974769659286</octets-65-to-127>
+              <octets-128-to-255>1806731770119</octets-128-to-255>
+              <octets-256-to-511>904333676409</octets-256-to-511>
+              <octets-512-to-1023>1528074238222</octets-512-to-1023>
+              <octets-1024-to-1518>22046722857186</octets-1024-to-1518>
+              <octets-1519-to-max>53361538456289</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>716825878</remote-time-mark>
+                <remote-index>5</remote-index>
+                <age>17622033</age>
+                <chassis-id>2C:21:31:2C:FB:C0</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>et-7/0/4</remote-port-id>
+                <remote-port-id-subtype>interface-name</remote-port-id-subtype>
+                <port-description>PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | to RT0.AMS 1/1/c19/1</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description>Juniper Networks, Inc. mx960 internet router, kernel JUNOS 20.4R3-S7.2, Build date: 2023-04-21 19:35:28 UTC Copyright (c) 1996-2023 Juniper Networks, Inc.</system-description>
+                <system-name>rt1.ams.nl.re0.geant.net</system-name>
+                <mgmt-address>
+                  <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+                  <mgmt-address>172.16.254.2</mgmt-address>
+                  <interface-subtype>if-index</interface-subtype>
+                  <interface-id>1</interface-id>
+                  <object-identifier>16975361.33627905.16843009</object-identifier>
+                </mgmt-address>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>587406</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>635026</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>2540104</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c20</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c20/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c20/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c20/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c20/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c21</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c22</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c22/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c22/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c22/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c22/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c23</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c23/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c24</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c25</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c25/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c26</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c26/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c26/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c27</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c27/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c27/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c28</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c28/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c29</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c29/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c29/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c30</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c30/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c30/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c31</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c31/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c32</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c32/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c32/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c32/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c32/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c33</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c34</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c34/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c34/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c34/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c34/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c35</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>1/1/c35/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>1/1/c36</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c1/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T08:00:49.5Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T08:00:49.5Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>39</in-errors>
+          <in-octets>33975475932201231</in-octets>
+          <in-packets>27752257969730</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>1895</in-broadcast-packets>
+          <in-multicast-packets>4775571083</in-multicast-packets>
+          <in-unicast-packets>27747482396752</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>34793417016214008</out-octets>
+          <out-packets>29749511186543</out-packets>
+          <out-broadcast-packets>16</out-broadcast-packets>
+          <out-multicast-packets>411800412350</out-multicast-packets>
+          <out-unicast-packets>29337710774177</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>17</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>1895</in-broadcast-packets>
+            <in-multicast-packets>4775571083</in-multicast-packets>
+            <in-unicast-packets>27747482396752</in-unicast-packets>
+            <in-errors>39</in-errors>
+            <in-octets>33975475932201231</in-octets>
+            <in-utilization>564</in-utilization>
+            <out-broadcast-packets>16</out-broadcast-packets>
+            <out-multicast-packets>411800412350</out-multicast-packets>
+            <out-unicast-packets>29337710774177</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>34793417016214008</out-octets>
+            <out-utilization>369</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>9</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>18</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>1911</total-broadcast-packets>
+            <total-multicast-packets>416575983433</total-multicast-packets>
+            <total-octets>68768892948415239</total-octets>
+            <total-packets>57501769156273</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>12</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>9</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>581230653895</octets-64>
+              <octets-65-to-127>9685529593690</octets-65-to-127>
+              <octets-128-to-255>1511433744955</octets-128-to-255>
+              <octets-256-to-511>819325855434</octets-256-to-511>
+              <octets-512-to-1023>1030874874057</octets-512-to-1023>
+              <octets-1024-to-1518>13100467484320</octets-1024-to-1518>
+              <octets-1519-to-max>30772906949922</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>1811870150</remote-time-mark>
+                <remote-index>26</remote-index>
+                <age>6671592</age>
+                <chassis-id>80:B9:46:F2:0D:30</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899521</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c1/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to RT0.AMS 1/1/c1/1"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.lon.uk</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>581767</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>1</age-outs>
+                  <frames>587813</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>323580</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c2/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c2/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c2/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c2/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c4/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c4/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c4/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c4/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c5</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c5/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T08:00:49.5Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T08:00:49.5Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>120</in-errors>
+          <in-octets>44713209035966208</in-octets>
+          <in-packets>41484735557389</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>2258411168</in-multicast-packets>
+          <in-unicast-packets>41482477146221</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>37429006686011924</out-octets>
+          <out-packets>31449897098836</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>385974017594</out-multicast-packets>
+          <out-unicast-packets>31063923081242</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>15</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>2258411168</in-multicast-packets>
+            <in-unicast-packets>41482477146221</in-unicast-packets>
+            <in-errors>120</in-errors>
+            <in-octets>44713209035966208</in-octets>
+            <in-utilization>535</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>385974017594</out-multicast-packets>
+            <out-unicast-packets>31063923081242</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>37429006686011924</out-octets>
+            <out-utilization>484</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>35</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>2</fragments>
+            <jabbers>48</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>388232428762</total-multicast-packets>
+            <total-octets>82142215721978132</total-octets>
+            <total-packets>72934632656225</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>35</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>35</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>570468595755</octets-64>
+              <octets-65-to-127>15234335168308</octets-65-to-127>
+              <octets-128-to-255>2911471037902</octets-128-to-255>
+              <octets-256-to-511>1187341677428</octets-256-to-511>
+              <octets-512-to-1023>1458120831106</octets-512-to-1023>
+              <octets-1024-to-1518>16953938341714</octets-1024-to-1518>
+              <octets-1519-to-max>34618957004012</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>1811869960</remote-time-mark>
+                <remote-index>25</remote-index>
+                <age>6671594</age>
+                <chassis-id>80:B9:46:F2:0D:30</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899777</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c5/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to RT0.AMS 1/1/c5/1"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.lon.uk</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>581768</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>2</age-outs>
+                  <frames>587817</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>323600</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c6</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c7</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c7/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c8</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c8/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T09:01:30.9Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>1</in-errors>
+          <in-octets>10193301983709047</in-octets>
+          <in-packets>7951566068786</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>7443</in-broadcast-packets>
+          <in-multicast-packets>29676893</in-multicast-packets>
+          <in-unicast-packets>7951536384450</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>17177235530879396</out-octets>
+          <out-packets>12727562834980</out-packets>
+          <out-broadcast-packets>30</out-broadcast-packets>
+          <out-multicast-packets>31174437982</out-multicast-packets>
+          <out-unicast-packets>12696388396968</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>23</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>7443</in-broadcast-packets>
+            <in-multicast-packets>29676893</in-multicast-packets>
+            <in-unicast-packets>7951536384450</in-unicast-packets>
+            <in-errors>1</in-errors>
+            <in-octets>10193301983709047</in-octets>
+            <in-utilization>592</in-utilization>
+            <out-broadcast-packets>30</out-broadcast-packets>
+            <out-multicast-packets>31174437982</out-multicast-packets>
+            <out-unicast-packets>12696388396968</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>17177235530879396</out-octets>
+            <out-utilization>591</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>1</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>7473</total-broadcast-packets>
+            <total-multicast-packets>31204114875</total-multicast-packets>
+            <total-octets>27370537514588443</total-octets>
+            <total-packets>20679128903766</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>1</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>91618881134</octets-64>
+              <octets-65-to-127>2554898032224</octets-65-to-127>
+              <octets-128-to-255>182815227423</octets-128-to-255>
+              <octets-256-to-511>140865979734</octets-256-to-511>
+              <octets-512-to-1023>140714437775</octets-512-to-1023>
+              <octets-1024-to-1518>1759129903492</octets-1024-to-1518>
+              <octets-1519-to-max>15809086441984</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>1948842190</remote-time-mark>
+                <remote-index>36</remote-index>
+                <age>5301872</age>
+                <chassis-id>80:B9:46:ED:05:30</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899969</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c8/1, 100-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/C8/1"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.ham.de</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>581590</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>3</age-outs>
+                  <frames>605508</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>1281824</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c8/2</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T09:01:30.9Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>6</in-errors>
+          <in-octets>10170367690411515</in-octets>
+          <in-packets>7928117251876</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>25142547</in-multicast-packets>
+          <in-unicast-packets>7928092109329</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>17028068309719530</out-octets>
+          <out-packets>12678136364004</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>18234679281</out-multicast-packets>
+          <out-unicast-packets>12659901684723</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>23</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>25142547</in-multicast-packets>
+            <in-unicast-packets>7928092109329</in-unicast-packets>
+            <in-errors>6</in-errors>
+            <in-octets>10170367690411515</in-octets>
+            <in-utilization>592</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>18234679281</out-multicast-packets>
+            <out-unicast-packets>12659901684723</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>17028068309719530</out-octets>
+            <out-utilization>500</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>1</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>3</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>18259821828</total-multicast-packets>
+            <total-octets>27198436000131045</total-octets>
+            <total-packets>20606253615880</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>2</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>1</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>92509220089</octets-64>
+              <octets-65-to-127>2640552843819</octets-65-to-127>
+              <octets-128-to-255>238329747627</octets-128-to-255>
+              <octets-256-to-511>113314584965</octets-256-to-511>
+              <octets-512-to-1023>144032307263</octets-512-to-1023>
+              <octets-1024-to-1518>1548361017737</octets-1024-to-1518>
+              <octets-1519-to-max>15829153894380</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>1948842190</remote-time-mark>
+                <remote-index>37</remote-index>
+                <age>5301872</age>
+                <chassis-id>80:B9:46:ED:05:30</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610899970</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c8/2, 100-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/C8/2"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.ham.de</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>581587</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>3</age-outs>
+                  <frames>605480</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>1281720</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c9</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c9/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-27T09:01:30.9Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>2</in-errors>
+          <in-octets>10242017876625735</in-octets>
+          <in-packets>7971244126472</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>27167281</in-multicast-packets>
+          <in-unicast-packets>7971216959191</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>17816022678573242</out-octets>
+          <out-packets>13074402328181</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>24127586024</out-multicast-packets>
+          <out-unicast-packets>13050274742157</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>23</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>27167281</in-multicast-packets>
+            <in-unicast-packets>7971216959191</in-unicast-packets>
+            <in-errors>2</in-errors>
+            <in-octets>10242017876625735</in-octets>
+            <in-utilization>572</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>24127586024</out-multicast-packets>
+            <out-unicast-packets>13050274742157</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>17816022678573242</out-octets>
+            <out-utilization>755</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>1</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>1</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>24154753305</total-multicast-packets>
+            <total-octets>28058040555198977</total-octets>
+            <total-packets>21045646454653</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>1</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>90830156595</octets-64>
+              <octets-65-to-127>2537084286394</octets-65-to-127>
+              <octets-128-to-255>159574625837</octets-128-to-255>
+              <octets-256-to-511>89029121701</octets-256-to-511>
+              <octets-512-to-1023>138114183336</octets-512-to-1023>
+              <octets-1024-to-1518>2128610182248</octets-1024-to-1518>
+              <octets-1519-to-max>15902403898542</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>1948842190</remote-time-mark>
+                <remote-index>38</remote-index>
+                <age>5301872</age>
+                <chassis-id>80:B9:46:ED:05:30</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>1610900033</remote-port-id>
+                <remote-port-id-subtype>local</remote-port-id-subtype>
+                <port-description>1/1/c9/1, 100-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/c9/1"</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description/>
+                <system-name>rt0.ham.de</system-name>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>581587</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>3</age-outs>
+                  <frames>605525</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>1281900</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c9/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c10</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c10/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c11</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c11/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c11/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c12</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c12/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c12/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c13</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c13/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c14</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c14/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c14/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c14/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c14/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c15</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c16</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c16/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c16/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local frame-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c16/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c16/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c17</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c17/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c18</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c19</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c19/1</port-id>
+        <statistics>
+          <counter-discontinuity-time>2024-06-25T09:02:23.0Z</counter-discontinuity-time>
+          <last-cleared-time>2024-06-25T09:02:23.0Z</last-cleared-time>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>72228340059260931</in-octets>
+          <in-packets>61161079990258</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>21635771</in-multicast-packets>
+          <in-unicast-packets>61161058354487</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>56782236430728409</out-octets>
+          <out-packets>50841359110932</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>356209166089</out-multicast-packets>
+          <out-unicast-packets>50485149944843</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>1</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to RT1.AMS et-7/</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>21635771</in-multicast-packets>
+            <in-unicast-packets>61161058354487</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>72228340059260931</in-octets>
+            <in-utilization>1022</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>356209166089</out-multicast-packets>
+            <out-unicast-packets>50485149944843</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>56782236430728409</out-octets>
+            <out-utilization>737</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>356230801860</total-multicast-packets>
+            <total-octets>129010576489989340</total-octets>
+            <total-packets>112002439101190</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>1062836414316</octets-64>
+              <octets-65-to-127>24098949668416</octets-65-to-127>
+              <octets-128-to-255>2973779885716</octets-128-to-255>
+              <octets-256-to-511>1334013456790</octets-256-to-511>
+              <octets-512-to-1023>2429930604864</octets-512-to-1023>
+              <octets-1024-to-1518>24004104727527</octets-1024-to-1518>
+              <octets-1519-to-max>56098824343561</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <remote-system>
+                <remote-time-mark>716827080</remote-time-mark>
+                <remote-index>1</remote-index>
+                <age>17622024</age>
+                <chassis-id>2C:21:31:2C:FB:C0</chassis-id>
+                <chassis-id-subtype>mac-address</chassis-id-subtype>
+                <remote-port-id>et-7/1/4</remote-port-id>
+                <remote-port-id-subtype>interface-name</remote-port-id-subtype>
+                <port-description>PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | to RT0.AMS 2/1/c19/1</port-description>
+                <system-enabled-capabilities>bridge router</system-enabled-capabilities>
+                <system-supported-capabilities>bridge router</system-supported-capabilities>
+                <system-description>Juniper Networks, Inc. mx960 internet router, kernel JUNOS 20.4R3-S7.2, Build date: 2023-04-21 19:35:28 UTC Copyright (c) 1996-2023 Juniper Networks, Inc.</system-description>
+                <system-name>rt1.ams.nl.re0.geant.net</system-name>
+                <mgmt-address>
+                  <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+                  <mgmt-address>172.16.254.2</mgmt-address>
+                  <interface-subtype>if-index</interface-subtype>
+                  <interface-id>1</interface-id>
+                  <object-identifier>16975361.33627905.16843009</object-identifier>
+                </mgmt-address>
+              </remote-system>
+              <statistics>
+                <transmit>
+                  <frames>587405</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>635059</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>2540236</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c20</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c20/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c20/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c20/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c20/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c21</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c22</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c22/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c22/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c22/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c22/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c23</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c23/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c24</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c25</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c25/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c26</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c26/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c26/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c27</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c27/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c27/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c28</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c28/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c29</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c29/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c29/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local block-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c30</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c30/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c30/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>signal-fail local block-not-locked</current-alarms>
+          <reported-alarms>local</reported-alarms>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>100000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>100-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c31</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c31/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c32</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c32/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c32/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c32/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c32/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c33</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c34</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c34/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/2</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/5</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/6</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/7</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/8</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/9</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c34/10</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local frame-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>10000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c35</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>2/1/c35/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+          <egress-queue>
+            <queue>
+              <queue-id>1</queue-id>
+            </queue>
+            <queue>
+              <queue-id>2</queue-id>
+            </queue>
+            <queue>
+              <queue-id>3</queue-id>
+            </queue>
+            <queue>
+              <queue-id>4</queue-id>
+            </queue>
+            <queue>
+              <queue-id>5</queue-id>
+            </queue>
+            <queue>
+              <queue-id>6</queue-id>
+            </queue>
+            <queue>
+              <queue-id>7</queue-id>
+            </queue>
+            <queue>
+              <queue-id>8</queue-id>
+            </queue>
+          </egress-queue>
+        </statistics>
+        <ethernet>
+          <current-alarms>local alignment-marker-not-locked</current-alarms>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>400000</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>16000</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>400-Gig Ethernet</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+              <pause>
+                <frames-received>0</frames-received>
+                <frames-transmitted>0</frames-transmitted>
+              </pause>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+          <efm-oam>
+            <config-revision>0</config-revision>
+            <function-support>loopback</function-support>
+            <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state>
+            <grace-tx-oper-state>inactive</grace-tx-oper-state>
+            <loop-detected>false</loop-detected>
+            <loopback-state>none</loopback-state>
+            <oper-state>disabled</oper-state>
+            <pdu-size>1518</pdu-size>
+            <soft-reset-action>none</soft-reset-action>
+            <vendor-info>00:01:00:2c</vendor-info>
+            <vendor-oui>00:16:4d</vendor-oui>
+            <statistics>
+              <frames-lost>0</frames-lost>
+              <receive>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </receive>
+              <transmit>
+                <information>0</information>
+                <unique-event-notification>0</unique-event-notification>
+                <duplicate-event-notification>0</duplicate-event-notification>
+                <loopback-control>0</loopback-control>
+                <organization-specific>0</organization-specific>
+                <unsupported-codes>0</unsupported-codes>
+                <variable-request>0</variable-request>
+                <variable-response>0</variable-response>
+              </transmit>
+            </statistics>
+          </efm-oam>
+          <lldp>
+            <dest-mac>
+              <mac-type>nearest-bridge</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-non-tpmr</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+            <dest-mac>
+              <mac-type>nearest-customer</mac-type>
+              <statistics>
+                <transmit>
+                  <frames>0</frames>
+                  <length-error-frames>0</length-error-frames>
+                </transmit>
+                <receive>
+                  <age-outs>0</age-outs>
+                  <frames>0</frames>
+                  <frame-discards>0</frame-discards>
+                  <frame-errors>0</frame-errors>
+                  <tlv-discards>0</tlv-discards>
+                  <tlv-unknown>0</tlv-unknown>
+                </receive>
+              </statistics>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob</mgmt-address-system-type>
+                <mgmt-address>172.16.254.11</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system</mgmt-address-system-type>
+                <mgmt-address>62.40.96.16</mgmt-address>
+                <mgmt-address-subtype>ipv4</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>system-ipv6</mgmt-address-system-type>
+                <mgmt-address>2001:798:aa:1::8</mgmt-address>
+                <mgmt-address-subtype>ipv6</mgmt-address-subtype>
+              </tx-mgmt-address>
+              <tx-mgmt-address>
+                <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type>
+                <mgmt-address-subtype>other</mgmt-address-subtype>
+              </tx-mgmt-address>
+            </dest-mac>
+          </lldp>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>2/1/c36</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+      </port>
+      <port>
+        <port-id>A/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>474751044</in-octets>
+          <in-packets>1412848</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>1412842</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>6</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>1216</out-octets>
+          <out-packets>19</out-packets>
+          <out-broadcast-packets>19</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>mdi</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>1000</oper-speed>
+          <oper-state-change-count>5</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability/>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>1412842</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>6</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>474751044</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>19</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>1216</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>1412861</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>474752260</total-octets>
+            <total-packets>1412867</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>49737</octets-64>
+              <octets-65-to-127>266</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>1362864</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>A/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>not-applicable</oper-duplex>
+          <oper-speed>0</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10/100/Gig Ethernet SFP</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>A/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>not-applicable</oper-duplex>
+          <oper-speed>0</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability/>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>B/1</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>474742612</in-octets>
+          <in-packets>1412822</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>1412816</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>6</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>320</out-octets>
+          <out-packets>5</out-packets>
+          <out-broadcast-packets>5</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>mdi</mdi-type>
+          <oper-duplex>full</oper-duplex>
+          <oper-speed>1000</oper-speed>
+          <oper-state-change-count>3</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability/>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>1412816</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>6</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>474742612</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>5</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>320</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>1412821</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>474742932</total-octets>
+            <total-packets>1412827</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>49721</octets-64>
+              <octets-65-to-127>266</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>1362840</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>idle</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>B/3</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>not-applicable</oper-duplex>
+          <oper-speed>0</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability>ethernet</ptp-timestamp-capability>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <elmi>
+            <link-status>up</link-status>
+            <user-network-interface>
+              <identifier>10/100/Gig Ethernet SFP</identifier>
+              <type>bundling</type>
+            </user-network-interface>
+            <statistics>
+              <received>
+                <discarded-messages>0</discarded-messages>
+                <invalid-sequence-number-messages>0</invalid-sequence-number-messages>
+                <status-enquiry-messages>0</status-enquiry-messages>
+                <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts>
+              </received>
+              <transmitted>
+                <asynchronous-status-messages>0</asynchronous-status-messages>
+                <status-messages>0</status-messages>
+              </transmitted>
+            </statistics>
+          </elmi>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+      <port>
+        <port-id>B/4</port-id>
+        <statistics>
+          <in-discards>0</in-discards>
+          <in-errors>0</in-errors>
+          <in-octets>0</in-octets>
+          <in-packets>0</in-packets>
+          <in-unknown-protocol-discards>0</in-unknown-protocol-discards>
+          <in-broadcast-packets>0</in-broadcast-packets>
+          <in-multicast-packets>0</in-multicast-packets>
+          <in-unicast-packets>0</in-unicast-packets>
+          <out-discards>0</out-discards>
+          <out-errors>0</out-errors>
+          <out-octets>0</out-octets>
+          <out-packets>0</out-packets>
+          <out-broadcast-packets>0</out-broadcast-packets>
+          <out-multicast-packets>0</out-multicast-packets>
+          <out-unicast-packets>0</out-unicast-packets>
+        </statistics>
+        <ethernet>
+          <current-alarms/>
+          <reported-alarms/>
+          <mdi-type>unknown</mdi-type>
+          <oper-duplex>not-applicable</oper-duplex>
+          <oper-speed>0</oper-speed>
+          <oper-state-change-count>0</oper-state-change-count>
+          <oper-tx-clock>not-applicable</oper-tx-clock>
+          <oper-egress-rate>unrestricted</oper-egress-rate>
+          <ptp-timestamp-capability/>
+          <crc-monitor>
+            <current-alarms/>
+          </crc-monitor>
+          <dampening>
+            <current-penalties>0</current-penalties>
+            <max-penalties>0</max-penalties>
+            <oper-state>idle</oper-state>
+          </dampening>
+          <down-when-looped>
+            <loop-state>no-loop-detected</loop-state>
+          </down-when-looped>
+          <ssm>
+            <received-quality-level>unknown</received-quality-level>
+            <received-ssm-code>254</received-ssm-code>
+            <transmitted-quality-level>reserved0</transmitted-quality-level>
+          </ssm>
+          <statistics>
+            <in-broadcast-packets>0</in-broadcast-packets>
+            <in-multicast-packets>0</in-multicast-packets>
+            <in-unicast-packets>0</in-unicast-packets>
+            <in-errors>0</in-errors>
+            <in-octets>0</in-octets>
+            <in-utilization>0</in-utilization>
+            <out-broadcast-packets>0</out-broadcast-packets>
+            <out-multicast-packets>0</out-multicast-packets>
+            <out-unicast-packets>0</out-unicast-packets>
+            <out-errors>0</out-errors>
+            <out-octets>0</out-octets>
+            <out-utilization>0</out-utilization>
+            <collisions>0</collisions>
+            <crc-align-errors>0</crc-align-errors>
+            <drop-events>0</drop-events>
+            <fragments>0</fragments>
+            <jabbers>0</jabbers>
+            <oversize-packets>0</oversize-packets>
+            <undersize-packets>0</undersize-packets>
+            <total-broadcast-packets>0</total-broadcast-packets>
+            <total-multicast-packets>0</total-multicast-packets>
+            <total-octets>0</total-octets>
+            <total-packets>0</total-packets>
+            <ethernet-like-medium>
+              <frame-too-long>0</frame-too-long>
+              <collision>
+                <excessive>0</excessive>
+                <late>0</late>
+                <multiple>0</multiple>
+                <single>0</single>
+              </collision>
+              <error>
+                <alignment>0</alignment>
+                <carrier-sense>0</carrier-sense>
+                <fcs>0</fcs>
+                <internal-mac-transmitted>0</internal-mac-transmitted>
+                <sqe-test>0</sqe-test>
+                <symbol>0</symbol>
+              </error>
+            </ethernet-like-medium>
+            <packet-size>
+              <octets-64>0</octets-64>
+              <octets-65-to-127>0</octets-65-to-127>
+              <octets-128-to-255>0</octets-128-to-255>
+              <octets-256-to-511>0</octets-256-to-511>
+              <octets-512-to-1023>0</octets-512-to-1023>
+              <octets-1024-to-1518>0</octets-1024-to-1518>
+              <octets-1519-to-max>0</octets-1519-to-max>
+            </packet-size>
+          </statistics>
+          <symbol-monitor>
+            <current-alarms/>
+            <total-errors>0</total-errors>
+          </symbol-monitor>
+          <access>
+            <available-bandwidth>0</available-bandwidth>
+            <booked-bandwidth>0</booked-bandwidth>
+          </access>
+          <dot1x>
+            <authenticator-pae-state>force-authorized</authenticator-pae-state>
+            <backend-authentication-state>initialize</backend-authentication-state>
+            <port-status>authorized</port-status>
+            <statistics>
+              <received>
+                <bad-eap-length-frames>0</bad-eap-length-frames>
+                <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address>
+                <last-version>0</last-version>
+                <logoff-frames>0</logoff-frames>
+                <response-frames>0</response-frames>
+                <response-id-frames>0</response-id-frames>
+                <start-frames>0</start-frames>
+                <valid-frames>0</valid-frames>
+                <unknown-frames>0</unknown-frames>
+              </received>
+              <transmitted>
+                <request-frames>0</request-frames>
+                <request-id-frames>0</request-id-frames>
+                <total-frames>0</total-frames>
+              </transmitted>
+            </statistics>
+          </dot1x>
+        </ethernet>
+      </port>
+    </state>
+  </data>
+</rpc-reply>
\ No newline at end of file
diff --git a/test/interface_stats/data/rt0.ams.nl.geant.net-router-interfaces.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-router-interfaces.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fdea849f33bd5d3abe1285b2b84f7fbe2759bbac
--- /dev/null
+++ b/test/interface_stats/data/rt0.ams.nl.geant.net-router-interfaces.xml
@@ -0,0 +1,1322 @@
+<rpc-reply message-id="urn:uuid:4915d32e-5de2-43a8-8ec8-f5417d7df685">
+  <data>
+    <state>
+      <router>
+        <router-name>Base</router-name>
+        <interface>
+          <interface-name>system</interface-name>
+          <if-index>1</if-index>
+          <system-if-index>256</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>1500</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-06-20T14:42:06.0Z</last-oper-change>
+          <statistics>
+            <ip>
+              <out-packets>0</out-packets>
+              <out-octets>0</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>400</in-packets>
+              <in-octets>62245</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>0</out-packets>
+              <out-octets>0</out-octets>
+              <in-packets>0</in-packets>
+              <in-octets>0</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>400</icmp-in-msgs>
+                <icmp-in-errors>400</icmp-in-errors>
+                <icmp-in-dest-unreachables>15</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>0</icmp-in-echos>
+                <icmp-in-echo-replies>0</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>385</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>0</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>0</icmp-out-msgs>
+                <icmp-out-errors>0</icmp-out-errors>
+                <icmp-out-dest-unreachables>0</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>0</icmp-out-echos>
+                <icmp-out-echo-replies>0</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>0</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>0</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>0</out-packets>
+              <out-octets>0</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>0</in-packets>
+              <in-octets>0</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.96.16</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>178</icmp6-in-msgs>
+                <icmp6-in-errors>174</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>0</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>174</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>0</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>2</icmp6-in-echos>
+                <icmp6-in-echo-replies>2</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>0</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>0</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>178</icmp6-out-msgs>
+                <icmp6-out-errors>174</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>0</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>174</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>0</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>2</icmp6-out-echos>
+                <icmp6-out-echo-replies>2</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>0</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>0</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>0</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>0</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <statistics>
+              <out-packets>0</out-packets>
+              <out-octets>0</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>0</in-packets>
+              <in-octets>0</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:aa:1::8</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:aa:1::8</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+          </ipv6>
+        </interface>
+        <interface>
+          <interface-name>lag-5.0</interface-name>
+          <if-index>2</if-index>
+          <system-if-index>1</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>9000</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-06-25T09:08:11.8Z</last-oper-change>
+          <distributed-cpu-protection>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>1</card>
+              <fp-number>3</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>3056</total-exceed-count>
+              <exit-conform-state-count>1274</exit-conform-state-count>
+            </static-policer>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>2</card>
+              <fp-number>3</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>4347</total-exceed-count>
+              <exit-conform-state-count>1783</exit-conform-state-count>
+            </static-policer>
+          </distributed-cpu-protection>
+          <statistics>
+            <ip>
+              <out-packets>28912736445027</out-packets>
+              <out-octets>37096898468445547</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>517754743</in-packets>
+              <in-octets>80633408014</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>56199867176859</out-packets>
+              <out-octets>63808307871991453</out-octets>
+              <in-packets>123230295966526</in-packets>
+              <in-octets>145959705619124828</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>1600159</icmp-in-msgs>
+                <icmp-in-errors>739</icmp-in-errors>
+                <icmp-in-dest-unreachables>733</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>1599207</icmp-in-echos>
+                <icmp-in-echo-replies>169</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>6</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>44</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>2249106</icmp-out-msgs>
+                <icmp-out-errors>2167963</icmp-out-errors>
+                <icmp-out-dest-unreachables>2</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>24215</icmp-out-echos>
+                <icmp-out-echo-replies>56928</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>2167961</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>50952</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>19519807024709</out-packets>
+              <out-octets>25360065481497812</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>50018613405</in-packets>
+              <in-octets>19576950253230</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.98.39</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv4-address>62.40.98.38</ipv4-address>
+                <oper-state>up</oper-state>
+                <mac-address>2e:21:31:2c:f4:ca</mac-address>
+                <type>dynamic</type>
+                <timer>13732</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>2257168</icmp6-in-msgs>
+                <icmp6-in-errors>23</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>4</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>19</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>0</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>1605148</icmp6-in-echos>
+                <icmp6-in-echo-replies>0</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>15918</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>636076</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>1742285</icmp6-out-msgs>
+                <icmp6-out-errors>1074260</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>4</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>1074256</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>0</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>0</icmp6-out-echos>
+                <icmp6-out-echo-replies>10526</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>641581</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>15918</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>0</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>104897</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <link-local-address>
+              <oper-address>fe80::82b9:46ff:feef:de75</oper-address>
+              <address-state>preferred</address-state>
+            </link-local-address>
+            <statistics>
+              <out-packets>9392929420318</out-packets>
+              <out-octets>11736832986947735</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>7034263334</in-packets>
+              <in-octets>3811070347651</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:cc::62</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:cc::62</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv6-address>2001:798:cc::61</ipv6-address>
+                <state>stale</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>2e:21:31:2c:f4:ca</mac-address>
+                <type>dynamic</type>
+                <timer>14312</timer>
+              </neighbor>
+              <neighbor>
+                <ipv6-address>fe80::2e21:31ff:fe2c:f4ca</ipv6-address>
+                <state>reachable</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>2e:21:31:2c:f4:ca</mac-address>
+                <type>dynamic</type>
+                <timer>21</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv6>
+        </interface>
+        <interface>
+          <interface-name>lag-8.0</interface-name>
+          <if-index>3</if-index>
+          <system-if-index>2</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>9000</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-12-17T00:10:14.0Z</last-oper-change>
+          <distributed-cpu-protection>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>1</card>
+              <fp-number>1</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>182350</total-exceed-count>
+              <exit-conform-state-count>23453</exit-conform-state-count>
+            </static-policer>
+          </distributed-cpu-protection>
+          <statistics>
+            <ip>
+              <out-packets>7720092178042</out-packets>
+              <out-octets>9783161498607668</out-octets>
+              <out-discard-packets>7243680</out-discard-packets>
+              <out-discard-octets>694228363</out-discard-octets>
+              <in-packets>768714614</in-packets>
+              <in-octets>101540784110</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>110060046474013</out-packets>
+              <out-octets>130728336824826631</out-octets>
+              <in-packets>84691371759577</in-packets>
+              <in-octets>110416249480652114</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>16150072</icmp-in-msgs>
+                <icmp-in-errors>11909</icmp-in-errors>
+                <icmp-in-dest-unreachables>11659</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>16108839</icmp-in-echos>
+                <icmp-in-echo-replies>29217</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>250</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>104</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>3</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>287826553</icmp-out-msgs>
+                <icmp-out-errors>284648767</icmp-out-errors>
+                <icmp-out-dest-unreachables>3480</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>185383</icmp-out-echos>
+                <icmp-out-echo-replies>2992403</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>284645287</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>8732705</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>3747317642612</out-packets>
+              <out-octets>4238534692392482</out-octets>
+              <out-discard-packets>7243680</out-discard-packets>
+              <out-discard-octets>694228363</out-discard-octets>
+              <in-packets>973232631717</in-packets>
+              <in-octets>1084916727576828</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.98.20</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv4-address>62.40.98.21</ipv4-address>
+                <oper-state>up</oper-state>
+                <mac-address>e0:cb:19:8f:45:d0</mac-address>
+                <type>dynamic</type>
+                <timer>9176</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>23956756</icmp6-in-msgs>
+                <icmp6-in-errors>318</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>35</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>242</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>41</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>22884054</icmp6-in-echos>
+                <icmp6-in-echo-replies>37</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>449598</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>622680</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>27105471</icmp6-out-msgs>
+                <icmp6-out-errors>20556084</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>62</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>20556005</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>17</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>66</icmp6-out-echos>
+                <icmp6-out-echo-replies>4679671</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>632113</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>449597</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>787940</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>7925337</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <link-local-address>
+              <oper-address>fe80::82b9:46ff:feef:de78</oper-address>
+              <address-state>preferred</address-state>
+            </link-local-address>
+            <statistics>
+              <out-packets>3972774535430</out-packets>
+              <out-octets>5544626806215186</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>21605322642</in-packets>
+              <in-octets>13365419129839</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:cc::21</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:cc::21</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv6-address>2001:798:cc::22</ipv6-address>
+                <state>stale</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>e0:cb:19:8f:45:d0</mac-address>
+                <type>dynamic</type>
+                <timer>13844</timer>
+              </neighbor>
+              <neighbor>
+                <ipv6-address>fe80::e2cb:19ff:fe8f:45d0</ipv6-address>
+                <state>delay</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>e0:cb:19:8f:45:d0</mac-address>
+                <type>dynamic</type>
+                <timer>2</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv6>
+        </interface>
+        <interface>
+          <interface-name>lag-4.0</interface-name>
+          <if-index>4</if-index>
+          <system-if-index>3</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>9000</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-11-07T10:26:39.3Z</last-oper-change>
+          <distributed-cpu-protection>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>2</card>
+              <fp-number>1</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>41491</total-exceed-count>
+              <exit-conform-state-count>9802</exit-conform-state-count>
+            </static-policer>
+          </distributed-cpu-protection>
+          <statistics>
+            <ip>
+              <out-packets>4347896327166</out-packets>
+              <out-octets>5207974832667675</out-octets>
+              <out-discard-packets>255497814</out-discard-packets>
+              <out-discard-octets>21547374775</out-discard-octets>
+              <in-packets>789272452</in-packets>
+              <in-octets>86534657349</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>56795774274445</out-packets>
+              <out-octets>66953219330123518</out-octets>
+              <in-packets>67901794839294</in-packets>
+              <in-octets>77364257910435766</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>4188089</icmp-in-msgs>
+                <icmp-in-errors>2453</icmp-in-errors>
+                <icmp-in-dest-unreachables>2394</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>4185283</icmp-in-echos>
+                <icmp-in-echo-replies>340</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>59</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>13</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>881836790</icmp-out-msgs>
+                <icmp-out-errors>861587338</icmp-out-errors>
+                <icmp-out-dest-unreachables>122</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>735581</icmp-out-echos>
+                <icmp-out-echo-replies>19513871</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>861587216</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>255516121</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>3048625139594</out-packets>
+              <out-octets>3546244316708507</out-octets>
+              <out-discard-packets>255497814</out-discard-packets>
+              <out-discard-octets>21547374775</out-discard-octets>
+              <in-packets>1278691664703</in-packets>
+              <in-octets>1252162582948770</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.98.22</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv4-address>62.40.98.23</ipv4-address>
+                <oper-state>up</oper-state>
+                <mac-address>80:b9:46:f2:0e:74</mac-address>
+                <type>dynamic</type>
+                <timer>9289</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>7317690</icmp6-in-msgs>
+                <icmp6-in-errors>242577</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>15</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>242529</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>33</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>5919588</icmp6-in-echos>
+                <icmp6-in-echo-replies>1</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>523270</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>632254</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>162665704</icmp6-out-msgs>
+                <icmp6-out-errors>134862856</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>14583</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>134848270</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>3</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>4</icmp6-out-echos>
+                <icmp6-out-echo-replies>25806340</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>637691</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>523270</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>835543</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>74778953</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <link-local-address>
+              <oper-address>fe80::82b9:46ff:feef:de74</oper-address>
+              <address-state>preferred</address-state>
+            </link-local-address>
+            <statistics>
+              <out-packets>1299271187572</out-packets>
+              <out-octets>1661730515959168</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>7442298423</in-packets>
+              <in-octets>2449818558388</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:cc::25</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:cc::25</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv6-address>2001:798:cc::26</ipv6-address>
+                <state>stale</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>80:b9:46:f2:0e:74</mac-address>
+                <type>dynamic</type>
+                <timer>6819</timer>
+              </neighbor>
+              <neighbor>
+                <ipv6-address>fe80::82b9:46ff:fef2:e74</ipv6-address>
+                <state>reachable</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>80:b9:46:f2:0e:74</mac-address>
+                <type>dynamic</type>
+                <timer>29</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv6>
+        </interface>
+        <interface>
+          <interface-name>lag-9.0</interface-name>
+          <if-index>5</if-index>
+          <system-if-index>4</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>9000</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-12-10T15:01:47.1Z</last-oper-change>
+          <distributed-cpu-protection>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>2</card>
+              <fp-number>1</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>54</total-exceed-count>
+              <exit-conform-state-count>8</exit-conform-state-count>
+            </static-policer>
+          </distributed-cpu-protection>
+          <statistics>
+            <ip>
+              <out-packets>3349791075400</out-packets>
+              <out-octets>4109319988899607</out-octets>
+              <out-discard-packets>17</out-discard-packets>
+              <out-discard-octets>136682</out-discard-octets>
+              <in-packets>97114091</in-packets>
+              <in-octets>27082624718</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>35127047921576</out-packets>
+              <out-octets>47907915902953710</out-octets>
+              <in-packets>23808192881561</in-packets>
+              <in-octets>30577343505817360</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>61510</icmp-in-msgs>
+                <icmp-in-errors>5</icmp-in-errors>
+                <icmp-in-dest-unreachables>2</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>61358</icmp-in-echos>
+                <icmp-in-echo-replies>147</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>3</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>0</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>1493208</icmp-out-msgs>
+                <icmp-out-errors>1449901</icmp-out-errors>
+                <icmp-out-dest-unreachables>978</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>43297</icmp-out-echos>
+                <icmp-out-echo-replies>10</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>1448923</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>0</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>3151015591536</out-packets>
+              <out-octets>3815492297240729</out-octets>
+              <out-discard-packets>17</out-discard-packets>
+              <out-discard-octets>136682</out-discard-octets>
+              <in-packets>31769866436</in-packets>
+              <in-octets>17131720479615</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.98.66</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv4-address>62.40.98.67</ipv4-address>
+                <oper-state>up</oper-state>
+                <mac-address>80:b9:46:ed:06:79</mac-address>
+                <type>dynamic</type>
+                <timer>3807</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>1014326</icmp6-in-msgs>
+                <icmp6-in-errors>502</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>2</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>500</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>0</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>76860</icmp6-in-echos>
+                <icmp6-in-echo-replies>0</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>312574</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>624390</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>1772364</icmp6-out-msgs>
+                <icmp6-out-errors>834159</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>3</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>834156</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>0</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>0</icmp6-out-echos>
+                <icmp6-out-echo-replies>2</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>625629</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>312574</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>0</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>0</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <link-local-address>
+              <oper-address>fe80::82b9:46ff:feef:de79</oper-address>
+              <address-state>preferred</address-state>
+            </link-local-address>
+            <statistics>
+              <out-packets>198775483864</out-packets>
+              <out-octets>293827691658878</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>8767446379</in-packets>
+              <in-octets>8712445136396</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:cc:1::d1</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:cc:1::d1</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv6-address>2001:798:cc:1::d2</ipv6-address>
+                <state>stale</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>80:b9:46:ed:06:79</mac-address>
+                <type>dynamic</type>
+                <timer>11599</timer>
+              </neighbor>
+              <neighbor>
+                <ipv6-address>fe80::82b9:46ff:feed:679</ipv6-address>
+                <state>reachable</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>80:b9:46:ed:06:79</mac-address>
+                <type>dynamic</type>
+                <timer>0</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv6>
+        </interface>
+        <interface>
+          <interface-name>lag-3.0</interface-name>
+          <if-index>6</if-index>
+          <system-if-index>5</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol>isis mpls rsvp pim</protocol>
+          <oper-ip-mtu>9000</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2024-12-17T04:11:49.2Z</last-oper-change>
+          <distributed-cpu-protection>
+            <static-policer>
+              <name>ICMP_LIMIT</name>
+              <card>1</card>
+              <fp-number>1</fp-number>
+              <state>conform</state>
+              <exceed-count>0</exceed-count>
+              <hold-down-remain>none</hold-down-remain>
+              <detection-time-remain>0</detection-time-remain>
+              <total-exceed-count>28</total-exceed-count>
+              <exit-conform-state-count>3</exit-conform-state-count>
+            </static-policer>
+          </distributed-cpu-protection>
+          <statistics>
+            <ip>
+              <out-packets>3993526125159</out-packets>
+              <out-octets>5487712676461429</out-octets>
+              <out-discard-packets>6</out-discard-packets>
+              <out-discard-octets>331</out-discard-octets>
+              <in-packets>58187174</in-packets>
+              <in-octets>7322347741</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+            <mpls>
+              <out-packets>592197224457</out-packets>
+              <out-octets>655391205062249</out-octets>
+              <in-packets>4128638679127</in-packets>
+              <in-octets>4262236578939551</in-octets>
+            </mpls>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>183033</icmp-in-msgs>
+                <icmp-in-errors>3</icmp-in-errors>
+                <icmp-in-dest-unreachables>3</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>183028</icmp-in-echos>
+                <icmp-in-echo-replies>2</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>0</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>0</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>6664</icmp-out-msgs>
+                <icmp-out-errors>67</icmp-out-errors>
+                <icmp-out-dest-unreachables>0</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>6591</icmp-out-echos>
+                <icmp-out-echo-replies>6</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>67</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>0</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <dhcp>
+              <statistics>
+                <total-rx-packets>
+                  <received>0</received>
+                  <malformed>0</malformed>
+                  <untrusted>0</untrusted>
+                </total-rx-packets>
+                <total-tx-packets>
+                  <transmitted>0</transmitted>
+                </total-tx-packets>
+                <client-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </client-packets>
+                <server-packets>
+                  <dropped>0</dropped>
+                  <relayed>0</relayed>
+                  <snooped>0</snooped>
+                </server-packets>
+              </statistics>
+            </dhcp>
+            <statistics>
+              <out-packets>1190701442768</out-packets>
+              <out-octets>1458863830338203</out-octets>
+              <out-discard-packets>6</out-discard-packets>
+              <out-discard-octets>331</out-discard-octets>
+              <in-packets>2216577645</in-packets>
+              <in-octets>547961460840</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+              <out-discard-dbcast-packets>0</out-discard-dbcast-packets>
+              <out-discard-dbcast-octets>0</out-discard-dbcast-octets>
+              <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets>
+              <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets>
+            </statistics>
+            <primary>
+              <oper-address>62.40.98.80</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv4-address>62.40.98.81</ipv4-address>
+                <oper-state>up</oper-state>
+                <mac-address>e4:5d:37:87:3d:83</mac-address>
+                <type>dynamic</type>
+                <timer>14350</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv4>
+          <ipv6>
+            <oper-state>up</oper-state>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>609832</icmp6-in-msgs>
+                <icmp6-in-errors>32024</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>0</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>32024</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>0</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>10889</icmp6-in-echos>
+                <icmp6-in-echo-replies>0</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>14146</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>552773</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>600195</icmp6-out-msgs>
+                <icmp6-out-errors>32051</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>0</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>32051</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>0</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>0</icmp6-out-echos>
+                <icmp6-out-echo-replies>0</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>553998</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>14146</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>0</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>0</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+            <link-local-address>
+              <oper-address>fe80::82b9:46ff:feef:de73</oper-address>
+              <address-state>preferred</address-state>
+            </link-local-address>
+            <statistics>
+              <out-packets>2802824682391</out-packets>
+              <out-octets>4028848846123226</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>0</in-packets>
+              <in-octets>0</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </statistics>
+            <address>
+              <ipv6-address>2001:798:cc:1::e9</ipv6-address>
+              <address-state>preferred</address-state>
+              <oper-address>2001:798:cc:1::e9</oper-address>
+              <creation-origin>manual</creation-origin>
+              <primary-preferred>true</primary-preferred>
+            </address>
+            <neighbor-discovery>
+              <neighbor>
+                <ipv6-address>2001:798:cc:1::ea</ipv6-address>
+                <state>stale</state>
+                <is-router>false</is-router>
+                <mtu>9000</mtu>
+                <mac-address>e4:5d:37:87:3d:83</mac-address>
+                <type>dynamic</type>
+                <timer>14361</timer>
+              </neighbor>
+              <neighbor>
+                <ipv6-address>fe80::e65d:37ff:fe87:3d83</ipv6-address>
+                <state>reachable</state>
+                <is-router>true</is-router>
+                <mtu>9000</mtu>
+                <mac-address>e4:5d:37:87:3d:83</mac-address>
+                <type>dynamic</type>
+                <timer>23</timer>
+              </neighbor>
+            </neighbor-discovery>
+          </ipv6>
+        </interface>
+      </router>
+      <router>
+        <router-name>management</router-name>
+        <interface>
+          <interface-name>management</interface-name>
+          <if-index>1280</if-index>
+          <system-if-index>32768</system-if-index>
+          <oper-state>up</oper-state>
+          <protocol/>
+          <oper-ip-mtu>1500</oper-ip-mtu>
+          <creation-origin>manual</creation-origin>
+          <last-oper-change>2025-01-07T13:53:58.5Z</last-oper-change>
+          <statistics>
+            <ip>
+              <out-packets>0</out-packets>
+              <out-octets>0</out-octets>
+              <out-discard-packets>0</out-discard-packets>
+              <out-discard-octets>0</out-discard-octets>
+              <in-packets>267</in-packets>
+              <in-octets>17060</in-octets>
+              <urpf-check-fail-packets>0</urpf-check-fail-packets>
+              <urpf-check-fail-octets>0</urpf-check-fail-octets>
+            </ip>
+          </statistics>
+          <ipv4>
+            <oper-state>up</oper-state>
+            <icmp>
+              <statistics>
+                <icmp-in-msgs>0</icmp-in-msgs>
+                <icmp-in-errors>0</icmp-in-errors>
+                <icmp-in-dest-unreachables>0</icmp-in-dest-unreachables>
+                <icmp-in-redirects>0</icmp-in-redirects>
+                <icmp-in-echos>0</icmp-in-echos>
+                <icmp-in-echo-replies>0</icmp-in-echo-replies>
+                <icmp-in-time-exceeds>0</icmp-in-time-exceeds>
+                <icmp-in-src-quenches>0</icmp-in-src-quenches>
+                <icmp-in-timestamps>0</icmp-in-timestamps>
+                <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies>
+                <icmp-in-address-masks>0</icmp-in-address-masks>
+                <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies>
+                <icmp-in-parm-problems>0</icmp-in-parm-problems>
+                <icmp-out-msgs>0</icmp-out-msgs>
+                <icmp-out-errors>0</icmp-out-errors>
+                <icmp-out-dest-unreachables>0</icmp-out-dest-unreachables>
+                <icmp-out-redirects>0</icmp-out-redirects>
+                <icmp-out-echos>0</icmp-out-echos>
+                <icmp-out-echo-replies>0</icmp-out-echo-replies>
+                <icmp-out-time-exceeds>0</icmp-out-time-exceeds>
+                <icmp-out-src-quenches>0</icmp-out-src-quenches>
+                <icmp-out-timestamps>0</icmp-out-timestamps>
+                <icmp-out-timestamp-replies>0</icmp-out-timestamp-replies>
+                <icmp-out-address-masks>0</icmp-out-address-masks>
+                <icmp-out-address-mask-replies>0</icmp-out-address-mask-replies>
+                <icmp-out-parm-problems>0</icmp-out-parm-problems>
+                <icmp-out-discards>0</icmp-out-discards>
+              </statistics>
+            </icmp>
+            <primary>
+              <oper-address>172.16.254.11</oper-address>
+              <creation-origin>manual</creation-origin>
+            </primary>
+          </ipv4>
+          <ipv6>
+            <oper-state>down</oper-state>
+            <down-reason>protocol-down</down-reason>
+            <icmp6>
+              <statistics>
+                <icmp6-in-msgs>0</icmp6-in-msgs>
+                <icmp6-in-errors>0</icmp6-in-errors>
+                <icmp6-in-dest-unreachables>0</icmp6-in-dest-unreachables>
+                <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs>
+                <icmp6-in-time-exceeds>0</icmp6-in-time-exceeds>
+                <icmp6-in-parm-problems>0</icmp6-in-parm-problems>
+                <icmp6-in-pkt-too-bigs>0</icmp6-in-pkt-too-bigs>
+                <icmp6-in-echos>0</icmp6-in-echos>
+                <icmp6-in-echo-replies>0</icmp6-in-echo-replies>
+                <icmp6-in-rtr-solicits>0</icmp6-in-rtr-solicits>
+                <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements>
+                <icmp6-in-nbr-solicits>0</icmp6-in-nbr-solicits>
+                <icmp6-in-nbr-advertisements>0</icmp6-in-nbr-advertisements>
+                <icmp6-in-redirects>0</icmp6-in-redirects>
+                <icmp6-in-grp-memb-queries>0</icmp6-in-grp-memb-queries>
+                <icmp6-in-grp-memb-repsonses>0</icmp6-in-grp-memb-repsonses>
+                <icmp6-in-grp-memb-reductions>0</icmp6-in-grp-memb-reductions>
+                <icmp6-out-msgs>0</icmp6-out-msgs>
+                <icmp6-out-errors>0</icmp6-out-errors>
+                <icmp6-out-dest-unreachables>0</icmp6-out-dest-unreachables>
+                <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs>
+                <icmp6-out-time-exceeds>0</icmp6-out-time-exceeds>
+                <icmp6-out-parm-problems>0</icmp6-out-parm-problems>
+                <icmp6-out-pkt-too-bigs>0</icmp6-out-pkt-too-bigs>
+                <icmp6-out-echos>0</icmp6-out-echos>
+                <icmp6-out-echo-replies>0</icmp6-out-echo-replies>
+                <icmp6-out-rtr-solicits>0</icmp6-out-rtr-solicits>
+                <icmp6-out-rtr-advertisements>0</icmp6-out-rtr-advertisements>
+                <icmp6-out-nbr-solicits>0</icmp6-out-nbr-solicits>
+                <icmp6-out-nbr-advertisements>0</icmp6-out-nbr-advertisements>
+                <icmp6-out-redirects>0</icmp6-out-redirects>
+                <icmp6-out-grp-memb-queries>0</icmp6-out-grp-memb-queries>
+                <icmp6-out-grp-memb-responses>0</icmp6-out-grp-memb-responses>
+                <icmp6-out-grp-memb-reductions>0</icmp6-out-grp-memb-reductions>
+                <icmp6-out-discards>0</icmp6-out-discards>
+              </statistics>
+            </icmp6>
+          </ipv6>
+        </interface>
+      </router>
+    </state>
+  </data>
+</rpc-reply>
\ No newline at end of file
diff --git a/test/interface_stats/test_interface_stats.py b/test/interface_stats/test_interface_stats.py
index e132e31011482252dfe2dc6a927f6e33f44ee386..480330726cb6e4d7569835fac2d7118402fde58a 100644
--- a/test/interface_stats/test_interface_stats.py
+++ b/test/interface_stats/test_interface_stats.py
@@ -26,6 +26,7 @@ def test_sanity_check_nokia_snapshot_data(all_nokia_routers):
     assert set(all_nokia_routers) == {
         "rt0.ams.nl.lab.office.geant.net",
         "rt0.lon.uk.lab.office.geant.net",
+        "rt0.ams.nl.geant.net",
     }
 
 
diff --git a/test/interface_stats/test_nokia.py b/test/interface_stats/test_nokia.py
index e29b97fbdf14621d5e7de87e7b56971f91db06a3..cdb4d06de3df0d179a9bcdf332cbd26ad99c7a60 100644
--- a/test/interface_stats/test_nokia.py
+++ b/test/interface_stats/test_nokia.py
@@ -255,17 +255,27 @@ class TestGetNokiaNetconf:
 
         calls = mocked_connection().__enter__().get.call_args_list
         assert len(calls) == 3
-        for i, kind in enumerate(["port", "lag"]):
-            elems = calls[i][1]["filter"].iter()
-            assert [e.tag for e in elems] == [
-                "filter",
-                "{urn:nokia.com:sros:ns:yang:sr:state}state",
-                "{urn:nokia.com:sros:ns:yang:sr:state}" + kind,
-                "{urn:nokia.com:sros:ns:yang:sr:state}statistics",
-            ]
-
-        elems = calls[2][1]["filter"].iter()
-        assert [e.tag for e in elems] == [
+
+        def _get_element_tags(call):
+            elems = call[1]["filter"].iter()
+            return [e.tag for e in elems]
+
+        assert _get_element_tags(calls[0]) == [
+            "filter",
+            "{urn:nokia.com:sros:ns:yang:sr:state}state",
+            "{urn:nokia.com:sros:ns:yang:sr:state}port",
+            "{urn:nokia.com:sros:ns:yang:sr:state}statistics",
+            "{urn:nokia.com:sros:ns:yang:sr:state}ethernet",
+        ]
+
+        assert _get_element_tags(calls[1]) == [
+            "filter",
+            "{urn:nokia.com:sros:ns:yang:sr:state}state",
+            "{urn:nokia.com:sros:ns:yang:sr:state}lag",
+            "{urn:nokia.com:sros:ns:yang:sr:state}statistics",
+        ]
+
+        assert _get_element_tags(calls[2]) == [
             "filter",
             "{urn:nokia.com:sros:ns:yang:sr:state}state",
             "{urn:nokia.com:sros:ns:yang:sr:state}router",