diff --git a/brian_polling_manager/interface_stats/vendors/nokia.py b/brian_polling_manager/interface_stats/vendors/nokia.py index d458ed43301d9e023a8dfc7eb10d9441cd20af44..df466bb3e51291df92e82ef30c5f6a10ac748f79 100644 --- a/brian_polling_manager/interface_stats/vendors/nokia.py +++ b/brian_polling_manager/interface_stats/vendors/nokia.py @@ -1,3 +1,4 @@ +from collections import namedtuple import logging import pathlib from typing import Dict, Optional, Sequence @@ -77,6 +78,81 @@ INTERFACE_COUNTERS_ALT = { }, } +EPIPE_COUNTERS = { + # Counters must be floats to be compatible with sensu writing to the same + # measurement. cf https://github.com/sensu/sensu-go/issues/2213 + "__defaults__": {"transform": float, "required": False}, + "name": { + "path": "./sap-id", + "transform": lambda v: str(v).strip(), + }, + "brian": { + "ingressOctets": { + "path": ( + "./ingress/qos/sap-ingress/forwarding-engine/statistics" + "/aggregate-offered-octets" + ), + "required": True, + }, + "ingressPackets": { + "path": ( + "./ingress/qos/sap-ingress/forwarding-engine/statistics" + "/aggregate-offered-packets" + ), + "required": True, + }, + "egressInplusForwardedPackets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "in-inplus-profile-forwarded-packets" + ), + "required": True, + }, + "egressExceedForwardedPackets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "out-exceed-profile-forwarded-packets" + ), + "required": True, + }, + "egressInplusForwardedOctets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "in-inplus-profile-forwarded-octets" + ), + "required": True, + }, + "egressExceedForwardedOctets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "out-exceed-profile-forwarded-octets" + ), + "required": True, + }, + }, + "errors": { + "__defaults__": {"transform": int}, + "input_discards": { + "path": ( + "./ingress/qos/sap-ingress/forwarding-engine/statistics" + "/dropped-packets" + ), + }, + "egressInplusDroppedPackets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "in-inplus-profile-dropped-packets" + ), + }, + "egressExceedDroppedPackets": { + "path": ( + "./egress/qos/sap-egress/queue/statistics/profile/" + "out-exceed-profile-dropped-packets" + ), + }, + }, +} + def get_netconf_interface_info( router_name: str, ssh_params: dict @@ -85,45 +161,57 @@ def get_netconf_interface_info( :param router_name: the router to poll :param ssh_params: ssh params for connecting to the router - :returns: a dictionary with doctype (``port``, ``lag`` & ``router-interface`` ) as - keys and their respective netconf document as values + :returns: a netconf document with all required interface data """ - - query_path = { - "port": ["port", ["statistics", "ethernet"]], - "lag": ["lag", "statistics"], - "router-interface": ["router", "interface"], - "vprn": ["service", "vprn", "interface"], - "ies": ["service", "ies", "interface"], + filter_tree = { + "port": ["statistics", "ethernet"], + "lag": ["statistics"], + "router": ["interface"], + "service": { + "vprn": ["interface"], + "ies": ["interface"], + "epipe": ["sap"], + }, } + with netconf_connect( hostname=router_name, ssh_params=ssh_params, **NCCLIENT_PARAMS ) as conn: - return { - doctype: remove_xml_namespaces(query(conn, *qpath).tostring.decode("utf-8")) - for doctype, qpath in query_path.items() - } + netconf_filter = build_filter(filter_tree) + return remove_xml_namespaces(conn.get(netconf_filter).tostring.decode("utf-8")) -def query(connection, *path): +def build_filter(path: dict): + """Build an netconf filter xml document from a tree made of python primitives: + * both ``dict`` and ``list`` represents 0 or more nodes. Keys in ``dict`` + represent siblings, and values children of those siblings + * ``list``s also represents siblings, but all siblings are leaf nodes + * ``str``s represent a node's text field. + """ STATE_NS = "urn:nokia.com:sros:ns:yang:sr:state" root = etree.Element("filter") - sub_elem = etree.SubElement( + state = etree.SubElement( root, f"{{{STATE_NS}}}state", nsmap={"nokia-state": STATE_NS} ) - is_leaf = False - for p in path: - 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}") + + def _build_filter(root, node): + if isinstance(node, dict): + for key, val in node.items(): + new_root = etree.SubElement(root, f"{{{STATE_NS}}}{key}") + _build_filter(new_root, val) + elif isinstance(node, list): + for item in node: + etree.SubElement(root, f"{{{STATE_NS}}}{item}") + elif isinstance(node, str): + root.text = node else: - is_leaf = True - for item in p: - etree.SubElement(sub_elem, f"{{{STATE_NS}}}{item}") + raise ValueError( + f"items in path struct must be dict, list or str, not {type(node)}" + ) - return connection.get(filter=root) + _build_filter(state, path) + return root def get_netconf_interface_info_from_source_dir(router_name: str, source_dir: str): @@ -134,30 +222,11 @@ def get_netconf_interface_info_from_source_dir(router_name: str, source_dir: str return etree.fromstring(file.read_text()) - return { - key: read_doc_or_raise(f"{router_name}-{key}s.xml") - for key in ["port", "lag", "router-interface", "ies", "vprn"] - } - - -def _port_xml(state_doc: etree.Element): - return state_doc.xpath("//data/state/port") + return read_doc_or_raise(f"{router_name}-state.xml") -def _lag_xml(state_doc: etree.Element): - return state_doc.xpath("//data/state/lag") - - -def _router_interface_xml(state_doc: etree.Element): - return state_doc.xpath("//data/state/router/interface") - - -def _ies_interface_xml(state_doc: etree.Element): - return state_doc.xpath("//data/state/service/ies/interface") - - -def _vprn_interface_xml(state_doc: etree.Element): - return state_doc.xpath("//data/state/service/vprn/interface") +# This could be a dataclass at some point +docinfo = namedtuple("docinfo", ("struct", "xpath", "transform")) def interface_counters( @@ -169,26 +238,59 @@ def interface_counters( ``None`` means return counters for all interfaces :return: iterable of interface counters """ - doc_info = { - "port": (INTERFACE_COUNTERS, _port_xml), - "lag": (INTERFACE_COUNTERS, _lag_xml), - "router-interface": (INTERFACE_COUNTERS_ALT, _router_interface_xml), - "ies": (INTERFACE_COUNTERS_ALT, _ies_interface_xml), - "vprn": (INTERFACE_COUNTERS_ALT, _vprn_interface_xml), - } + doc_info = [ + docinfo(INTERFACE_COUNTERS, "//data/state/port", None), + docinfo(INTERFACE_COUNTERS, "//data/state/lag", None), + docinfo(INTERFACE_COUNTERS_ALT, "//data/state/router/interface", None), + docinfo(INTERFACE_COUNTERS_ALT, "//data/state/service/ies/interface", None), + docinfo(INTERFACE_COUNTERS_ALT, "//data/state/service/vprn/interface", None), + docinfo( + EPIPE_COUNTERS, "//data/state/service/epipe/sap", _finalize_epipe_counters + ), + ] if interfaces is None: - for doctype, doc in raw_counter_docs.items(): - struct, xpath = doc_info[doctype] - yield from extract_all_counters(xpath(doc), struct) + for struct, xpath, transform in doc_info: + counters = extract_all_counters(raw_counter_docs.xpath(xpath), struct) + if transform is None: + yield from counters + else: + yield from map(transform, counters) return remaining = set(interfaces) - for doctype, doc in raw_counter_docs.items(): - struct, xpath = doc_info[doctype] - yield from extract_selected_counters(xpath(doc), struct, interfaces=remaining) + for struct, xpath, transform in doc_info: + counters = extract_selected_counters( + raw_counter_docs.xpath(xpath), struct, interfaces=remaining + ) + if transform is None: + yield from counters + else: + yield from map(transform, counters) if not remaining: return for ifc in remaining: logger.error(f"Interface {ifc} was not found on router") + + +def _finalize_epipe_counters(counters: dict): + summed_counters = { + ("brian", "egressOctets"): [ + "egressInplusForwardedOctets", + "egressExceedForwardedOctets", + ], + ("brian", "egressPackets"): [ + "egressInplusForwardedPackets", + "egressExceedForwardedPackets", + ], + ("errors", "output_discards"): [ + "egressInplusDroppedPackets", + "egressExceedDroppedPackets", + ], + } + for (group_name, output_counter), parts in summed_counters.items(): + group = counters[group_name] + group[output_counter] = sum(group.pop(p, 0) for p in parts) + + return counters diff --git a/test/interface_stats/conftest.py b/test/interface_stats/conftest.py index 6edb22a042509a922ba1f1c607a212b87a75d5b9..16b5d8b998a610d30ccbd413464e7c3424812df0 100644 --- a/test/interface_stats/conftest.py +++ b/test/interface_stats/conftest.py @@ -8,6 +8,7 @@ import pytest DATA_DIR = pathlib.Path(__file__).parent / "data" JUNIPER_DATA_FILENAME_EXTENSION = "-interface-info.xml" +NOKIA_DATA_FILENAME_EXTENSION = "-state.xml" JUNIPER_ROUTERS = [ path.name[: -len(JUNIPER_DATA_FILENAME_EXTENSION)] @@ -15,20 +16,11 @@ JUNIPER_ROUTERS = [ if path.name.endswith(JUNIPER_DATA_FILENAME_EXTENSION) ] -NOKIA_ROUTERS = list( - { - path.name[: -len(suffix)] - for suffix in { - "-ports.xml", - "-lags.xml", - "-router-interfaces.xml", - "-iess.xml", - "-vprns.xml", - } - for path in DATA_DIR.iterdir() - if path.name.endswith(suffix) - } -) +NOKIA_ROUTERS = [ + path.name[: -len(NOKIA_DATA_FILENAME_EXTENSION)] + for path in DATA_DIR.iterdir() + if path.name.endswith(NOKIA_DATA_FILENAME_EXTENSION) +] @pytest.fixture diff --git a/test/interface_stats/data/capture-test-data-nokia.py b/test/interface_stats/data/capture-test-data-nokia.py index d342dc091335298597f86dbfd8abddf3a1c4966b..a1a67c66dc5ba037931516cd4470a1a926d57b91 100644 --- a/test/interface_stats/data/capture-test-data-nokia.py +++ b/test/interface_stats/data/capture-test-data-nokia.py @@ -1,7 +1,9 @@ +import logging +import os import pathlib + from brian_polling_manager.interface_stats.vendors import nokia from lxml import etree -import logging logger = logging.getLogger(__name__) logging.basicConfig(level=logging.DEBUG) @@ -11,13 +13,14 @@ ncclient_logger.level = logging.WARNING ROUTERS = [ "rt0.ams.nl.geant.net", "rt0.lon2.uk.geant.net", + "rt0.ath.gr.lab.office.geant.net", ] SSH_PARAMS = { "ssh_config": "~/.ssh/config", "hostkey_verify": False, "username": "inprov", - "password": "<password>", + "password": os.environ["NOKIA_PASSWORD"], } @@ -25,13 +28,9 @@ def load_estate_interface_info(): for fqdn in ROUTERS: logger.info(fqdn) - raw_counter_docs = nokia.get_netconf_interface_info( - router_name=fqdn, ssh_params=SSH_PARAMS - ) - - for key, doc in raw_counter_docs.items(): - file = pathlib.Path(__file__).parent / f"{fqdn}-{key}s.xml" - file.write_bytes(etree.tostring(doc)) + doc = nokia.get_netconf_interface_info(router_name=fqdn, ssh_params=SSH_PARAMS) + file = pathlib.Path(__file__).parent / f"{fqdn}-state.xml" + file.write_bytes(etree.tostring(doc)) if __name__ == "__main__": diff --git a/test/interface_stats/data/capture-test-data.py b/test/interface_stats/data/capture-test-data.py index fa85b905b6be96dc46bec55a197b16b4545425c3..05888edb6150b00c345b02f7edc6b95205c62f72 100644 --- a/test/interface_stats/data/capture-test-data.py +++ b/test/interface_stats/data/capture-test-data.py @@ -80,7 +80,7 @@ def load_estate_interface_info(): executor.submit( save_router_info, r, - ssh_params={"host_verify": False, "ssh_config": "~/.ssh/config"}, + ssh_params={"hostkey_verify": False, "ssh_config": "~/.ssh/config"}, ) executor.shutdown(wait=True) diff --git a/test/interface_stats/data/rt0.ams.nl.geant.net-iess.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-iess.xml deleted file mode 100644 index bbcf2fa2f8dfd9c1ebb856afe9f1db9b5762de05..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.ams.nl.geant.net-iess.xml +++ /dev/null @@ -1,4 +0,0 @@ -<rpc-reply message-id="urn:uuid:6f098d71-0688-4cde-9861-ca1b7da785d1"> - <data> - </data> -</rpc-reply> \ No newline at end of file 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 deleted file mode 100644 index f7c7fac947de0768c2f66b22d83e6b4066d5b3de..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.ams.nl.geant.net-lags.xml +++ /dev/null @@ -1,106 +0,0 @@ -<rpc-reply message-id="urn:uuid:9732aeaa-fcc0-4f1e-8e6c-7bff6dd5d7fb"> - <data> - <state> - <lag> - <lag-name>lag-3</lag-name> - <statistics> - <in-discards>0</in-discards> - <in-errors>0</in-errors> - <in-octets>4773239057713801</in-octets> - <in-packets>4559076798225</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>15646</in-broadcast-packets> - <in-multicast-packets>34028990</in-multicast-packets> - <in-unicast-packets>4559042753589</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>6625774905937474</out-octets> - <out-packets>4952040944033</out-packets> - <out-broadcast-packets>84</out-broadcast-packets> - <out-multicast-packets>144943961545</out-multicast-packets> - <out-unicast-packets>4807096982404</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>86024929024327389</in-octets> - <in-packets>75612288130054</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>1895</in-broadcast-packets> - <in-multicast-packets>7037431863</in-multicast-packets> - <in-unicast-packets>75605250696296</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>77808423212516434</out-octets> - <out-packets>65980266155887</out-packets> - <out-broadcast-packets>16</out-broadcast-packets> - <out-multicast-packets>865248506847</out-multicast-packets> - <out-unicast-packets>65115017649024</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>158626828881850010</in-octets> - <in-packets>134012471720099</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>15780</in-broadcast-packets> - <in-multicast-packets>53418436</in-multicast-packets> - <in-unicast-packets>134012418285883</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>111842256108512776</out-octets> - <out-packets>94135497112326</out-packets> - <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>827630248355</out-multicast-packets> - <out-unicast-packets>93307866863969</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>122660966008074526</in-octets> - <in-packets>94183104448573</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>4449</in-broadcast-packets> - <in-multicast-packets>870552916665</in-multicast-packets> - <in-unicast-packets>93312551527459</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>152614484674108271</out-octets> - <out-packets>127920067493029</out-packets> - <out-broadcast-packets>56</out-broadcast-packets> - <out-multicast-packets>59968998</out-multicast-packets> - <out-unicast-packets>127920007523975</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>33359067795793961</in-octets> - <in-packets>25941053058416</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>7443</in-broadcast-packets> - <in-multicast-packets>93484535</in-multicast-packets> - <in-unicast-packets>25940959566438</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>57375963091442498</out-octets> - <out-packets>42359754618643</out-packets> - <out-broadcast-packets>30</out-broadcast-packets> - <out-multicast-packets>79576088589</out-multicast-packets> - <out-unicast-packets>42280178530024</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-router-interfaces.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-router-interfaces.xml deleted file mode 100644 index ecb66f5bf467d1b22c64323ea56d06bc1fa58420..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.ams.nl.geant.net-router-interfaces.xml +++ /dev/null @@ -1,1322 +0,0 @@ -<rpc-reply message-id="urn:uuid:2860d468-16f5-44c3-8af2-c84116e4f69f"> - <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>2319</out-discard-packets> - <out-discard-octets>360259</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>1</icmp-out-msgs> - <icmp-out-errors>1</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>1</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>2319</out-discard-packets> - <out-discard-octets>360259</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>31481360192507</out-packets> - <out-octets>40363413917923213</out-octets> - <out-discard-packets>5002</out-discard-packets> - <out-discard-octets>385331</out-discard-octets> - <in-packets>557984371</in-packets> - <in-octets>86441554073</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>62027509865793</out-packets> - <out-octets>70687262723815600</out-octets> - <in-packets>133271857479521</in-packets> - <in-octets>157728399064671211</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>1751544</icmp-in-msgs> - <icmp-in-errors>850</icmp-in-errors> - <icmp-in-dest-unreachables>844</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>1689567</icmp-in-echos> - <icmp-in-echo-replies>171</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>60956</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>49876399</icmp-out-msgs> - <icmp-out-errors>48317611</icmp-out-errors> - <icmp-out-dest-unreachables>4</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>28016</icmp-out-echos> - <icmp-out-echo-replies>1530772</icmp-out-echo-replies> - <icmp-out-time-exceeds>48317607</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>55960</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>21257377507618</out-packets> - <out-octets>27499490838465060</out-octets> - <out-discard-packets>5002</out-discard-packets> - <out-discard-octets>385331</out-discard-octets> - <in-packets>65811848427</in-packets> - <in-octets>36229105002783</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>13667</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>2362854</icmp6-in-msgs> - <icmp6-in-errors>25</icmp6-in-errors> - <icmp6-in-dest-unreachables>6</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>1664048</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>16992</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>681786</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>7969521</icmp6-out-msgs> - <icmp6-out-errors>6276742</icmp6-out-errors> - <icmp6-out-dest-unreachables>15</icmp6-out-dest-unreachables> - <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> - <icmp6-out-time-exceeds>6276727</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>988430</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>687357</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>16992</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>344089</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>10223982684889</out-packets> - <out-octets>12863923079458153</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>14181</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>4</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>7761552844235</out-packets> - <out-octets>9796848044219104</out-octets> - <out-discard-packets>7243680</out-discard-packets> - <out-discard-octets>694228363</out-discard-octets> - <in-packets>878538270</in-packets> - <in-octets>114498554910</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>119533013653293</out-packets> - <out-octets>142005864284544525</out-octets> - <in-packets>92513224848255</in-packets> - <in-octets>120728394747495376</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>19254955</icmp-in-msgs> - <icmp-in-errors>12040</icmp-in-errors> - <icmp-in-dest-unreachables>11751</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>18673996</icmp-in-echos> - <icmp-in-echo-replies>29264</icmp-in-echo-replies> - <icmp-in-time-exceeds>289</icmp-in-time-exceeds> - <icmp-in-src-quenches>0</icmp-in-src-quenches> - <icmp-in-timestamps>539652</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>301553925</icmp-out-msgs> - <icmp-out-errors>297026048</icmp-out-errors> - <icmp-out-dest-unreachables>3795</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>200283</icmp-out-echos> - <icmp-out-echo-replies>4327594</icmp-out-echo-replies> - <icmp-out-time-exceeds>297022253</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>3788467536549</out-packets> - <out-octets>4252130341245616</out-octets> - <out-discard-packets>7243680</out-discard-packets> - <out-discard-octets>694228363</out-discard-octets> - <in-packets>1055197789337</in-packets> - <in-octets>1176657835000406</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>10888</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>24821652</icmp6-in-msgs> - <icmp6-in-errors>697</icmp6-in-errors> - <icmp6-in-dest-unreachables>363</icmp6-in-dest-unreachables> - <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> - <icmp6-in-time-exceeds>293</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>23654563</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>496525</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>669761</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>31230174</icmp6-out-msgs> - <icmp6-out-errors>24580051</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>24579972</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>4686390</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>679203</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>496524</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>7928231</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>3973085307686</out-packets> - <out-octets>5544717702973488</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>23227449978</in-packets> - <in-octets>14451830418670</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>14389</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::e2cb:19ff:fe8f:45d0</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>e0:cb:19:8f:45:d0</mac-address> - <type>dynamic</type> - <timer>5</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.4Z</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>4435622422780</out-packets> - <out-octets>5302319854363322</out-octets> - <out-discard-packets>255500596</out-discard-packets> - <out-discard-octets>21547616364</out-discard-octets> - <in-packets>819774623</in-packets> - <in-octets>91411596386</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>61488924366251</out-packets> - <out-octets>72444899812475909</out-octets> - <in-packets>74234807961482</in-packets> - <in-octets>84686130875580655</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>4794405</icmp-in-msgs> - <icmp-in-errors>2827</icmp-in-errors> - <icmp-in-dest-unreachables>2426</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>4546608</icmp-in-echos> - <icmp-in-echo-replies>346</icmp-in-echo-replies> - <icmp-in-time-exceeds>401</icmp-in-time-exceeds> - <icmp-in-src-quenches>0</icmp-in-src-quenches> - <icmp-in-timestamps>244624</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>894469713</icmp-out-msgs> - <icmp-out-errors>874006826</icmp-out-errors> - <icmp-out-dest-unreachables>125</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>738417</icmp-out-echos> - <icmp-out-echo-replies>19724470</icmp-out-echo-replies> - <icmp-out-time-exceeds>874006701</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>255521214</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>3134444509157</out-packets> - <out-octets>3639225320407083</out-octets> - <out-discard-packets>255500596</out-discard-packets> - <out-discard-octets>21547616364</out-discard-octets> - <in-packets>1320364735160</in-packets> - <in-octets>1266362272501051</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>10817</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>7636755</icmp6-in-msgs> - <icmp6-in-errors>242626</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>242578</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>6148663</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>568264</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>677201</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>166579708</icmp6-out-msgs> - <icmp6-out-errors>138613182</icmp6-out-errors> - <icmp6-out-dest-unreachables>14606</icmp6-out-dest-unreachables> - <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> - <icmp6-out-time-exceeds>138598573</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>25880005</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>682710</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>568264</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>75129311</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>1301177913623</out-packets> - <out-octets>1663094533956239</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>7858442306</in-packets> - <in-octets>2586562639079</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>14379</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>32</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>3368569146416</out-packets> - <out-octets>4132522627948413</out-octets> - <out-discard-packets>17</out-discard-packets> - <out-discard-octets>136682</out-discard-octets> - <in-packets>106232510</in-packets> - <in-octets>29338914099</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>38987925779772</out-packets> - <out-octets>53239359480584626</out-octets> - <in-packets>25894885687227</in-packets> - <in-octets>33328742020038895</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>427573</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>66563</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>360858</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>3799431</icmp-out-msgs> - <icmp-out-errors>3747447</icmp-out-errors> - <icmp-out-dest-unreachables>1233</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>47268</icmp-out-echos> - <icmp-out-echo-replies>4716</icmp-out-echo-replies> - <icmp-out-time-exceeds>3746214</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>3169501423142</out-packets> - <out-octets>3838639920648354</out-octets> - <out-discard-packets>17</out-discard-packets> - <out-discard-octets>136682</out-discard-octets> - <in-packets>34672060589</in-packets> - <in-octets>18768465729742</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>5489</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>1105907</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>76905</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>358136</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>670364</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>3637244</icmp6-out-msgs> - <icmp6-out-errors>2607243</icmp6-out-errors> - <icmp6-out-dest-unreachables>61</icmp6-out-dest-unreachables> - <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> - <icmp6-out-time-exceeds>2607182</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>223</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>671642</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>358136</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>178440</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>199067723274</out-packets> - <out-octets>293882707300059</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>9244855833</in-packets> - <in-octets>8986492089808</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>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>80:b9:46:ed:06:79</mac-address> - <type>dynamic</type> - <timer>25</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>6</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>2025-01-21T10:31:52.8Z</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>4348790045679</out-packets> - <out-octets>5961130809555393</out-octets> - <out-discard-packets>7</out-discard-packets> - <out-discard-octets>469</out-discard-octets> - <in-packets>61962163</in-packets> - <in-octets>7857506394</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>603217765389</out-packets> - <out-octets>664636639741227</out-octets> - <in-packets>4556015508077</in-packets> - <in-octets>4772512630414324</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>245474</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>184891</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>60578</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>1273751</icmp-out-msgs> - <icmp-out-errors>1264859</icmp-out-errors> - <icmp-out-dest-unreachables>500</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>7122</icmp-out-echos> - <icmp-out-echo-replies>1770</icmp-out-echo-replies> - <icmp-out-time-exceeds>1264359</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>1304002461784</out-packets> - <out-octets>1597734107997736</out-octets> - <out-discard-packets>7</out-discard-packets> - <out-discard-octets>469</out-discard-octets> - <in-packets>2809429913</in-packets> - <in-octets>685170215732</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>13904</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>651064</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>11363</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>15213</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>592464</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>939050</icmp6-out-msgs> - <icmp6-out-errors>329587</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>329587</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>471</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>593779</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>15213</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>3044787583895</out-packets> - <out-octets>4363396701557657</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>true</is-router> - <mtu>9000</mtu> - <mac-address>e4:5d:37:87:3d:83</mac-address> - <type>dynamic</type> - <timer>13311</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>17</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/data/rt0.ams.nl.geant.net-ports.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-state.xml similarity index 95% rename from test/interface_stats/data/rt0.ams.nl.geant.net-ports.xml rename to test/interface_stats/data/rt0.ams.nl.geant.net-state.xml index 9df74546ffb77e1902b38b7cac97ba44e2dde83b..ad086cbc96e74db312d98d386b8af65c605d5179 100644 --- a/test/interface_stats/data/rt0.ams.nl.geant.net-ports.xml +++ b/test/interface_stats/data/rt0.ams.nl.geant.net-state.xml @@ -1,6 +1,106 @@ -<rpc-reply message-id="urn:uuid:069b87b4-51eb-4360-93ea-bdd5e7b063aa"> +<rpc-reply message-id="urn:uuid:3a06a44e-582b-419f-94dc-290a37c80b81"> <data> <state> + <lag> + <lag-name>lag-3</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4967142691069655</in-octets> + <in-packets>4726535943147</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>16420</in-broadcast-packets> + <in-multicast-packets>35713872</in-multicast-packets> + <in-unicast-packets>4726500212855</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>6826850064268660</out-octets> + <out-packets>5108305502927</out-packets> + <out-broadcast-packets>84</out-broadcast-packets> + <out-multicast-packets>153300358196</out-multicast-packets> + <out-unicast-packets>4955005144647</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>92973229237172828</in-octets> + <in-packets>81246747824164</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>1900</in-broadcast-packets> + <in-multicast-packets>11872529397</in-multicast-packets> + <in-unicast-packets>81234875292867</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>82017434203238049</out-octets> + <out-packets>69598308781499</out-packets> + <out-broadcast-packets>19</out-broadcast-packets> + <out-multicast-packets>905536714286</out-multicast-packets> + <out-unicast-packets>68692772067194</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>167084475434727706</in-octets> + <in-packets>141155471293855</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>16554</in-broadcast-packets> + <in-multicast-packets>57384900</in-multicast-packets> + <in-unicast-packets>141155413892401</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>120350176605443402</out-octets> + <out-packets>100902509042542</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>868511342698</out-multicast-packets> + <out-unicast-packets>100033997699842</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>130403235535176862</in-octets> + <in-packets>99891982277869</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>4462</in-broadcast-packets> + <in-multicast-packets>910917351639</in-multicast-packets> + <in-unicast-packets>98981064921768</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>160142417421332644</out-octets> + <out-packets>134128505172956</out-packets> + <out-broadcast-packets>64</out-broadcast-packets> + <out-multicast-packets>63805633</out-multicast-packets> + <out-unicast-packets>134128441367259</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>34819923934318342</in-octets> + <in-packets>27113086837181</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>7443</in-broadcast-packets> + <in-multicast-packets>97954173</in-multicast-packets> + <in-unicast-packets>27112988875565</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>61767707746112471</out-octets> + <out-packets>45484252235317</out-packets> + <out-broadcast-packets>30</out-broadcast-packets> + <out-multicast-packets>83653365080</out-multicast-packets> + <out-unicast-packets>45400598870207</out-unicast-packets> + </statistics> + </lag> <port> <port-id>1/1/c1</port-id> <statistics> @@ -28,19 +128,19 @@ <last-cleared-time>2024-06-25T08:04:28.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>55</in-errors> - <in-octets>62345605670837613</in-octets> - <in-packets>47733103955716</in-packets> + <in-octets>66294924621508326</in-octets> + <in-packets>50635269139624</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>117</in-broadcast-packets> - <in-multicast-packets>328782639541</in-multicast-packets> - <in-unicast-packets>47404321316058</in-unicast-packets> + <in-broadcast-packets>130</in-broadcast-packets> + <in-multicast-packets>349116156899</in-multicast-packets> + <in-unicast-packets>50286152982595</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>77923797250564762</out-octets> - <out-packets>66747149986963</out-packets> - <out-broadcast-packets>52</out-broadcast-packets> - <out-multicast-packets>32261902</out-multicast-packets> - <out-unicast-packets>66747117725009</out-unicast-packets> + <out-octets>81727594677546542</out-octets> + <out-packets>69937939870598</out-packets> + <out-broadcast-packets>60</out-broadcast-packets> + <out-multicast-packets>34134596</out-multicast-packets> + <out-unicast-packets>69937905735942</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -74,7 +174,7 @@ <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-state-change-count>79</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> @@ -114,18 +214,18 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>117</in-broadcast-packets> - <in-multicast-packets>328782639541</in-multicast-packets> - <in-unicast-packets>47404321316058</in-unicast-packets> + <in-broadcast-packets>130</in-broadcast-packets> + <in-multicast-packets>349116156899</in-multicast-packets> + <in-unicast-packets>50286152982595</in-unicast-packets> <in-errors>55</in-errors> - <in-octets>62345605670837613</in-octets> - <in-utilization>1566</in-utilization> - <out-broadcast-packets>52</out-broadcast-packets> - <out-multicast-packets>32261902</out-multicast-packets> - <out-unicast-packets>66747117725009</out-unicast-packets> + <in-octets>66294924621508326</in-octets> + <in-utilization>1653</in-utilization> + <out-broadcast-packets>60</out-broadcast-packets> + <out-multicast-packets>34134596</out-multicast-packets> + <out-unicast-packets>69937905735942</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>77923797250564762</out-octets> - <out-utilization>1966</out-utilization> + <out-octets>81727594677546542</out-octets> + <out-utilization>1388</out-utilization> <collisions>0</collisions> <crc-align-errors>18</crc-align-errors> <drop-events>0</drop-events> @@ -133,10 +233,10 @@ <jabbers>24</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>169</total-broadcast-packets> - <total-multicast-packets>328814901443</total-multicast-packets> - <total-octets>140269402921402375</total-octets> - <total-packets>114480253942679</total-packets> + <total-broadcast-packets>190</total-broadcast-packets> + <total-multicast-packets>349150291495</total-multicast-packets> + <total-octets>148022519299054868</total-octets> + <total-packets>120573209010222</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -159,13 +259,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>724018383291</octets-64> - <octets-65-to-127>19194204830991</octets-65-to-127> - <octets-128-to-255>1969414910387</octets-128-to-255> - <octets-256-to-511>1178047948550</octets-256-to-511> - <octets-512-to-1023>1487771864581</octets-512-to-1023> - <octets-1024-to-1518>19146700116547</octets-1024-to-1518> - <octets-1519-to-max>70780095888332</octets-1519-to-max> + <octets-64>753818689482</octets-64> + <octets-65-to-127>20034511110032</octets-65-to-127> + <octets-128-to-255>2058014103142</octets-128-to-255> + <octets-256-to-511>1233160561452</octets-256-to-511> + <octets-512-to-1023>1556306226668</octets-512-to-1023> + <octets-1024-to-1518>19841721624718</octets-1024-to-1518> + <octets-1519-to-max>75095676694728</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -239,9 +339,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>2225593778</remote-time-mark> - <remote-index>78</remote-index> - <age>3854653</age> + <remote-time-mark>2630531378</remote-time-mark> + <remote-index>88</remote-index> + <age>732886</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> @@ -254,12 +354,12 @@ </remote-system> <statistics> <transmit> - <frames>624354</frames> + <frames>651643</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>9</age-outs> - <frames>638722</frames> + <frames>666008</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -3040,19 +3140,19 @@ <last-cleared-time>2024-06-25T08:04:28.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>17</in-errors> - <in-octets>60315265934726289</in-octets> - <in-packets>46449926555482</in-packets> + <in-octets>64108310913668536</in-octets> + <in-packets>49256713138245</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>4332</in-broadcast-packets> - <in-multicast-packets>541770000647</in-multicast-packets> - <in-unicast-packets>45908156550503</in-unicast-packets> + <in-multicast-packets>561801194740</in-multicast-packets> + <in-unicast-packets>48694911939173</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>74690577411207341</out-octets> - <out-packets>61172831844990</out-packets> + <out-octets>78414822743786102</out-octets> + <out-packets>64190565302358</out-packets> <out-broadcast-packets>4</out-broadcast-packets> - <out-multicast-packets>27707080</out-multicast-packets> - <out-unicast-packets>61172804137906</out-unicast-packets> + <out-multicast-packets>29671037</out-multicast-packets> + <out-unicast-packets>64190535631317</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -3086,7 +3186,7 @@ <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-state-change-count>83</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> @@ -3127,17 +3227,17 @@ </ssm> <statistics> <in-broadcast-packets>4332</in-broadcast-packets> - <in-multicast-packets>541770000647</in-multicast-packets> - <in-unicast-packets>45908156550503</in-unicast-packets> + <in-multicast-packets>561801194740</in-multicast-packets> + <in-unicast-packets>48694911939173</in-unicast-packets> <in-errors>17</in-errors> - <in-octets>60315265934726289</in-octets> - <in-utilization>1510</in-utilization> + <in-octets>64108310913668536</in-octets> + <in-utilization>1557</in-utilization> <out-broadcast-packets>4</out-broadcast-packets> - <out-multicast-packets>27707080</out-multicast-packets> - <out-unicast-packets>61172804137906</out-unicast-packets> + <out-multicast-packets>29671037</out-multicast-packets> + <out-unicast-packets>64190535631317</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>74690577411207341</out-octets> - <out-utilization>1844</out-utilization> + <out-octets>78414822743786102</out-octets> + <out-utilization>1426</out-utilization> <collisions>0</collisions> <crc-align-errors>9</crc-align-errors> <drop-events>0</drop-events> @@ -3146,9 +3246,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>4336</total-broadcast-packets> - <total-multicast-packets>541797707727</total-multicast-packets> - <total-octets>135005843345933630</total-octets> - <total-packets>107622758400472</total-packets> + <total-multicast-packets>561830865777</total-multicast-packets> + <total-octets>142523133657454638</total-octets> + <total-packets>113447278440603</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -3171,13 +3271,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>728208556426</octets-64> - <octets-65-to-127>16104005967190</octets-65-to-127> - <octets-128-to-255>1677039625869</octets-128-to-255> - <octets-256-to-511>1066429377217</octets-256-to-511> - <octets-512-to-1023>1390136445623</octets-512-to-1023> - <octets-1024-to-1518>18004215443628</octets-1024-to-1518> - <octets-1519-to-max>68652722984519</octets-1519-to-max> + <octets-64>758053580457</octets-64> + <octets-65-to-127>16829800107092</octets-65-to-127> + <octets-128-to-255>1752835742369</octets-128-to-255> + <octets-256-to-511>1117772378223</octets-256-to-511> + <octets-512-to-1023>1456910272961</octets-512-to-1023> + <octets-1024-to-1518>18740344452535</octets-1024-to-1518> + <octets-1519-to-max>72791561906966</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -3251,9 +3351,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>2225593798</remote-time-mark> - <remote-index>79</remote-index> - <age>3854653</age> + <remote-time-mark>2630502098</remote-time-mark> + <remote-index>86</remote-index> + <age>733178</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> @@ -3266,12 +3366,12 @@ </remote-system> <statistics> <transmit> - <frames>624333</frames> + <frames>651614</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> - <age-outs>9</age-outs> - <frames>638697</frames> + <age-outs>10</age-outs> + <frames>665977</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -3764,19 +3864,19 @@ <last-cleared-time>2024-06-27T10:21:54.8Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>13</in-errors> - <in-octets>4773237680610770</in-octets> - <in-packets>4559075410716</in-packets> + <in-octets>4967142691069655</in-octets> + <in-packets>4726535943147</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>15646</in-broadcast-packets> - <in-multicast-packets>34028979</in-multicast-packets> - <in-unicast-packets>4559041366091</in-unicast-packets> + <in-broadcast-packets>16420</in-broadcast-packets> + <in-multicast-packets>35713872</in-multicast-packets> + <in-unicast-packets>4726500212855</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>6625772762839741</out-octets> - <out-packets>4952039300658</out-packets> + <out-octets>6826850064268660</out-octets> + <out-packets>5108305502927</out-packets> <out-broadcast-packets>84</out-broadcast-packets> - <out-multicast-packets>144943939314</out-multicast-packets> - <out-unicast-packets>4807095361260</out-unicast-packets> + <out-multicast-packets>153300358196</out-multicast-packets> + <out-unicast-packets>4955005144647</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -3850,18 +3950,18 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>15646</in-broadcast-packets> - <in-multicast-packets>34028979</in-multicast-packets> - <in-unicast-packets>4559041366091</in-unicast-packets> + <in-broadcast-packets>16420</in-broadcast-packets> + <in-multicast-packets>35713872</in-multicast-packets> + <in-unicast-packets>4726500212855</in-unicast-packets> <in-errors>13</in-errors> - <in-octets>4773237680610770</in-octets> - <in-utilization>159</in-utilization> + <in-octets>4967142691069655</in-octets> + <in-utilization>62</in-utilization> <out-broadcast-packets>84</out-broadcast-packets> - <out-multicast-packets>144943939314</out-multicast-packets> - <out-unicast-packets>4807095361260</out-unicast-packets> + <out-multicast-packets>153300358196</out-multicast-packets> + <out-unicast-packets>4955005144647</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>6625772762839741</out-octets> - <out-utilization>294</out-utilization> + <out-octets>6826850064268660</out-octets> + <out-utilization>234</out-utilization> <collisions>0</collisions> <crc-align-errors>2</crc-align-errors> <drop-events>0</drop-events> @@ -3869,10 +3969,10 @@ <jabbers>5</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>15730</total-broadcast-packets> - <total-multicast-packets>144977968293</total-multicast-packets> - <total-octets>11399010443450511</total-octets> - <total-packets>9511114711374</total-packets> + <total-broadcast-packets>16504</total-broadcast-packets> + <total-multicast-packets>153336072068</total-multicast-packets> + <total-octets>11793992755338315</total-octets> + <total-packets>9834841446074</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -3895,13 +3995,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>102863042773</octets-64> - <octets-65-to-127>1615391469015</octets-65-to-127> - <octets-128-to-255>159616136447</octets-128-to-255> - <octets-256-to-511>66795840330</octets-256-to-511> - <octets-512-to-1023>161075425280</octets-512-to-1023> - <octets-1024-to-1518>4621018164891</octets-1024-to-1518> - <octets-1519-to-max>2784354632638</octets-1519-to-max> + <octets-64>106349949129</octets-64> + <octets-65-to-127>1663800531281</octets-65-to-127> + <octets-128-to-255>164855876995</octets-128-to-255> + <octets-256-to-511>69924568583</octets-256-to-511> + <octets-512-to-1023>168856602601</octets-512-to-1023> + <octets-1024-to-1518>4767040048541</octets-1024-to-1518> + <octets-1519-to-max>2894013868944</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -3977,7 +4077,7 @@ <remote-system> <remote-time-mark>2531726618</remote-time-mark> <remote-index>81</remote-index> - <age>793325</age> + <age>1720933</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> @@ -3997,16 +4097,16 @@ </remote-system> <statistics> <transmit> - <frames>624413</frames> + <frames>655333</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>8</age-outs> - <frames>674860</frames> + <frames>708281</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2699440</tlv-unknown> + <tlv-unknown>2833124</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -10163,19 +10263,19 @@ <last-cleared-time>2024-06-25T09:02:23.0Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>80702183679381744</in-octets> - <in-packets>67959565891102</in-packets> + <in-octets>84991134988553182</in-octets> + <in-packets>71572033528206</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>15780</in-broadcast-packets> - <in-multicast-packets>30194760</in-multicast-packets> - <in-unicast-packets>67959535680562</in-unicast-packets> + <in-broadcast-packets>16554</in-broadcast-packets> + <in-multicast-packets>32362727</in-multicast-packets> + <in-unicast-packets>71572001148925</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>49207552751236048</out-octets> - <out-packets>38238985693407</out-packets> + <out-octets>52669680273546551</out-octets> + <out-packets>40844061004411</out-packets> <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>434165434954</out-multicast-packets> - <out-unicast-packets>37804820258451</out-unicast-packets> + <out-multicast-packets>448375212264</out-multicast-packets> + <out-unicast-packets>40395685792145</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -10249,18 +10349,18 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>15780</in-broadcast-packets> - <in-multicast-packets>30194760</in-multicast-packets> - <in-unicast-packets>67959535680562</in-unicast-packets> + <in-broadcast-packets>16554</in-broadcast-packets> + <in-multicast-packets>32362727</in-multicast-packets> + <in-unicast-packets>71572001148925</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>80702183679381744</in-octets> - <in-utilization>1240</in-utilization> + <in-octets>84991134988553182</in-octets> + <in-utilization>1380</in-utilization> <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>434165434954</out-multicast-packets> - <out-unicast-packets>37804820258451</out-unicast-packets> + <out-multicast-packets>448375212264</out-multicast-packets> + <out-unicast-packets>40395685792145</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>49207552751236048</out-octets> - <out-utilization>649</out-utilization> + <out-octets>52669680273546551</out-octets> + <out-utilization>1112</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -10268,10 +10368,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>15782</total-broadcast-packets> - <total-multicast-packets>434195629714</total-multicast-packets> - <total-octets>129909736430617792</total-octets> - <total-packets>106198551584509</total-packets> + <total-broadcast-packets>16556</total-broadcast-packets> + <total-multicast-packets>448407574991</total-multicast-packets> + <total-octets>137660815262099733</total-octets> + <total-packets>112416094532617</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -10294,13 +10394,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>1164941610983</octets-64> - <octets-65-to-127>18396403680949</octets-65-to-127> - <octets-128-to-255>1989595143140</octets-128-to-255> - <octets-256-to-511>995823952814</octets-256-to-511> - <octets-512-to-1023>1672950349235</octets-512-to-1023> - <octets-1024-to-1518>23968816308486</octets-1024-to-1518> - <octets-1519-to-max>58010020538902</octets-1519-to-max> + <octets-64>1225516976000</octets-64> + <octets-65-to-127>19391419125863</octets-65-to-127> + <octets-128-to-255>2100133382025</octets-128-to-255> + <octets-256-to-511>1049582261934</octets-256-to-511> + <octets-512-to-1023>1759485366822</octets-512-to-1023> + <octets-1024-to-1518>25146135413047</octets-1024-to-1518> + <octets-1519-to-max>61743822006926</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -10376,7 +10476,7 @@ <remote-system> <remote-time-mark>716825878</remote-time-mark> <remote-index>5</remote-index> - <age>18942334</age> + <age>19869942</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> @@ -10396,16 +10496,16 @@ </remote-system> <statistics> <transmit> - <frames>631416</frames> + <frames>662336</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>0</age-outs> - <frames>682597</frames> + <frames>716017</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2730388</tlv-unknown> + <tlv-unknown>2864068</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -20265,20 +20365,20 @@ <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>37078853006755859</in-octets> - <in-packets>30167831622482</in-packets> + <in-errors>60</in-errors> + <in-octets>39848249692507442</in-octets> + <in-packets>32224673999095</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>1895</in-broadcast-packets> - <in-multicast-packets>4777270666</in-multicast-packets> - <in-unicast-packets>30163054349921</in-unicast-packets> + <in-broadcast-packets>1900</in-broadcast-packets> + <in-multicast-packets>6989122472</in-multicast-packets> + <in-unicast-packets>32217684874723</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>37463567063674797</out-octets> - <out-packets>32063760338599</out-packets> - <out-broadcast-packets>16</out-broadcast-packets> - <out-multicast-packets>439153337226</out-multicast-packets> - <out-unicast-packets>31624607001357</out-unicast-packets> + <out-octets>39512348175028931</out-octets> + <out-packets>33852005423770</out-packets> + <out-broadcast-packets>19</out-broadcast-packets> + <out-multicast-packets>451197344678</out-multicast-packets> + <out-unicast-packets>33400808079073</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -20312,7 +20412,7 @@ <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-state-change-count>25</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> @@ -20352,29 +20452,29 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>1895</in-broadcast-packets> - <in-multicast-packets>4777270666</in-multicast-packets> - <in-unicast-packets>30163054349921</in-unicast-packets> - <in-errors>39</in-errors> - <in-octets>37078853006755859</in-octets> - <in-utilization>2197</in-utilization> - <out-broadcast-packets>16</out-broadcast-packets> - <out-multicast-packets>439153337226</out-multicast-packets> - <out-unicast-packets>31624607001357</out-unicast-packets> + <in-broadcast-packets>1900</in-broadcast-packets> + <in-multicast-packets>6989122472</in-multicast-packets> + <in-unicast-packets>32217684874723</in-unicast-packets> + <in-errors>60</in-errors> + <in-octets>39848249692507442</in-octets> + <in-utilization>961</in-utilization> + <out-broadcast-packets>19</out-broadcast-packets> + <out-multicast-packets>451197344678</out-multicast-packets> + <out-unicast-packets>33400808079073</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>37463567063674797</out-octets> - <out-utilization>2117</out-utilization> + <out-octets>39512348175028931</out-octets> + <out-utilization>809</out-utilization> <collisions>0</collisions> - <crc-align-errors>9</crc-align-errors> + <crc-align-errors>18</crc-align-errors> <drop-events>0</drop-events> <fragments>0</fragments> - <jabbers>18</jabbers> + <jabbers>27</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>1911</total-broadcast-packets> - <total-multicast-packets>443930607892</total-multicast-packets> - <total-octets>74542420070430656</total-octets> - <total-packets>62231591961081</total-packets> + <total-broadcast-packets>1919</total-broadcast-packets> + <total-multicast-packets>458186467150</total-multicast-packets> + <total-octets>79360597867536373</total-octets> + <total-packets>66076679422865</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -20384,9 +20484,9 @@ <single>0</single> </collision> <error> - <alignment>12</alignment> + <alignment>15</alignment> <carrier-sense>0</carrier-sense> - <fcs>9</fcs> + <fcs>18</fcs> <internal-mac-transmitted>0</internal-mac-transmitted> <sqe-test>0</sqe-test> <symbol>0</symbol> @@ -20397,13 +20497,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>617077156068</octets-64> - <octets-65-to-127>10432904423558</octets-65-to-127> - <octets-128-to-255>1620853826825</octets-128-to-255> - <octets-256-to-511>888745039746</octets-256-to-511> - <octets-512-to-1023>1114191879736</octets-512-to-1023> - <octets-1024-to-1518>14066057903398</octets-1024-to-1518> - <octets-1519-to-max>33491761731750</octets-1519-to-max> + <octets-64>641057531603</octets-64> + <octets-65-to-127>11013595127484</octets-65-to-127> + <octets-128-to-255>1689870056115</octets-128-to-255> + <octets-256-to-511>928542003646</octets-256-to-511> + <octets-512-to-1023>1168304682754</octets-512-to-1023> + <octets-1024-to-1518>14700041753009</octets-1024-to-1518> + <octets-1519-to-max>35935268268254</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -20477,9 +20577,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>1811870150</remote-time-mark> - <remote-index>26</remote-index> - <age>7991892</age> + <remote-time-mark>2627498550</remote-time-mark> + <remote-index>41</remote-index> + <age>763216</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> @@ -20492,12 +20592,12 @@ </remote-system> <statistics> <transmit> - <frames>625777</frames> + <frames>656703</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>1</age-outs> - <frames>631823</frames> + <frames>662752</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -23278,19 +23378,19 @@ <last-cleared-time>2024-06-27T08:00:49.5Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>120</in-errors> - <in-octets>48945999840096936</in-octets> - <in-packets>45444395484974</in-packets> + <in-octets>53125016404477457</in-octets> + <in-packets>49022102703280</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>2260161187</in-multicast-packets> - <in-unicast-packets>45442135323787</in-unicast-packets> + <in-multicast-packets>4883406932</in-multicast-packets> + <in-unicast-packets>49017219296348</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>40344778339694841</out-octets> - <out-packets>33916443155468</out-packets> + <out-octets>42505113159644696</out-octets> + <out-packets>35746324512240</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>426094984425</out-multicast-packets> - <out-unicast-packets>33490348171043</out-unicast-packets> + <out-multicast-packets>454339522717</out-multicast-packets> + <out-unicast-packets>35291984989523</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -23324,7 +23424,7 @@ <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-state-change-count>19</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> @@ -23365,17 +23465,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>2260161187</in-multicast-packets> - <in-unicast-packets>45442135323787</in-unicast-packets> + <in-multicast-packets>4883406932</in-multicast-packets> + <in-unicast-packets>49017219296348</in-unicast-packets> <in-errors>120</in-errors> - <in-octets>48945999840096936</in-octets> - <in-utilization>2585</in-utilization> + <in-octets>53125016404477457</in-octets> + <in-utilization>1482</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>426094984425</out-multicast-packets> - <out-unicast-packets>33490348171043</out-unicast-packets> + <out-multicast-packets>454339522717</out-multicast-packets> + <out-unicast-packets>35291984989523</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>40344778339694841</out-octets> - <out-utilization>1918</out-utilization> + <out-octets>42505113159644696</out-octets> + <out-utilization>896</out-utilization> <collisions>0</collisions> <crc-align-errors>35</crc-align-errors> <drop-events>0</drop-events> @@ -23384,9 +23484,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>428355145612</total-multicast-packets> - <total-octets>89290778179791777</total-octets> - <total-packets>79360838640442</total-packets> + <total-multicast-packets>459222929649</total-multicast-packets> + <total-octets>95630129564122153</total-octets> + <total-packets>84768427215520</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -23409,13 +23509,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>607835306523</octets-64> - <octets-65-to-127>16606656558924</octets-65-to-127> - <octets-128-to-255>3200365534540</octets-128-to-255> - <octets-256-to-511>1303633832116</octets-256-to-511> - <octets-512-to-1023>1590588364113</octets-512-to-1023> - <octets-1024-to-1518>18281872858875</octets-1024-to-1518> - <octets-1519-to-max>37769886185351</octets-1519-to-max> + <octets-64>631726045395</octets-64> + <octets-65-to-127>17667283485013</octets-65-to-127> + <octets-128-to-255>3399089001311</octets-128-to-255> + <octets-256-to-511>1375429580777</octets-256-to-511> + <octets-512-to-1023>1685981620495</octets-512-to-1023> + <octets-1024-to-1518>19191001865427</octets-1024-to-1518> + <octets-1519-to-max>40817915617102</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -23489,9 +23589,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>1811869960</remote-time-mark> - <remote-index>25</remote-index> - <age>7991895</age> + <remote-time-mark>2627498560</remote-time-mark> + <remote-index>42</remote-index> + <age>763217</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> @@ -23504,12 +23604,12 @@ </remote-system> <statistics> <transmit> - <frames>625778</frames> + <frames>656705</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>2</age-outs> - <frames>631827</frames> + <frames>662752</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -24002,19 +24102,19 @@ <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>1</in-errors> - <in-octets>11121136384498391</in-octets> - <in-packets>8656123250812</in-packets> + <in-octets>11609723485293244</in-octets> + <in-packets>9048111422690</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>7443</in-broadcast-packets> - <in-multicast-packets>32202023</in-multicast-packets> - <in-unicast-packets>8656091041346</in-unicast-packets> + <in-multicast-packets>33648388</in-multicast-packets> + <in-unicast-packets>9048077766859</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>18961788535063973</out-octets> - <out-packets>14024542351145</out-packets> + <out-octets>20427583146658017</out-octets> + <out-packets>15070100529145</out-packets> <out-broadcast-packets>30</out-broadcast-packets> - <out-multicast-packets>33104342724</out-multicast-packets> - <out-unicast-packets>13991438008391</out-unicast-packets> + <out-multicast-packets>34480571796</out-multicast-packets> + <out-unicast-packets>15035619957319</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -24089,17 +24189,17 @@ </ssm> <statistics> <in-broadcast-packets>7443</in-broadcast-packets> - <in-multicast-packets>32202023</in-multicast-packets> - <in-unicast-packets>8656091041346</in-unicast-packets> + <in-multicast-packets>33648388</in-multicast-packets> + <in-unicast-packets>9048077766859</in-unicast-packets> <in-errors>1</in-errors> - <in-octets>11121136384498391</in-octets> - <in-utilization>804</in-utilization> + <in-octets>11609723485293244</in-octets> + <in-utilization>662</in-utilization> <out-broadcast-packets>30</out-broadcast-packets> - <out-multicast-packets>33104342724</out-multicast-packets> - <out-unicast-packets>13991438008391</out-unicast-packets> + <out-multicast-packets>34480571796</out-multicast-packets> + <out-unicast-packets>15035619957319</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>18961788535063973</out-octets> - <out-utilization>1633</out-utilization> + <out-octets>20427583146658017</out-octets> + <out-utilization>1717</out-utilization> <collisions>0</collisions> <crc-align-errors>1</crc-align-errors> <drop-events>0</drop-events> @@ -24108,9 +24208,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>7473</total-broadcast-packets> - <total-multicast-packets>33136544747</total-multicast-packets> - <total-octets>30082924919562364</total-octets> - <total-packets>22680665601957</total-packets> + <total-multicast-packets>34514220184</total-multicast-packets> + <total-octets>32037306631951261</total-octets> + <total-packets>24118211951835</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -24133,13 +24233,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>98860035805</octets-64> - <octets-65-to-127>2755378894855</octets-65-to-127> - <octets-128-to-255>198083935388</octets-128-to-255> - <octets-256-to-511>154046424542</octets-256-to-511> - <octets-512-to-1023>153153598784</octets-512-to-1023> - <octets-1024-to-1518>1877410020385</octets-1024-to-1518> - <octets-1519-to-max>17443732692198</octets-1519-to-max> + <octets-64>102713597673</octets-64> + <octets-65-to-127>2895592922573</octets-65-to-127> + <octets-128-to-255>208587906613</octets-128-to-255> + <octets-256-to-511>162896814789</octets-256-to-511> + <octets-512-to-1023>161507529052</octets-512-to-1023> + <octets-1024-to-1518>1943026703464</octets-1024-to-1518> + <octets-1519-to-max>18643886477671</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -24215,7 +24315,7 @@ <remote-system> <remote-time-mark>1948842190</remote-time-mark> <remote-index>36</remote-index> - <age>6622173</age> + <age>7549781</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> @@ -24228,12 +24328,12 @@ </remote-system> <statistics> <transmit> - <frames>625600</frames> + <frames>656520</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>3</age-outs> - <frames>649518</frames> + <frames>680439</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -24342,19 +24442,19 @@ <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>6</in-errors> - <in-octets>11079616731394179</in-octets> - <in-packets>8617526732191</in-packets> + <in-octets>11563391593203855</in-octets> + <in-packets>9005593004562</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>28353706</in-multicast-packets> - <in-unicast-packets>8617498378485</in-unicast-packets> + <in-multicast-packets>29688424</in-multicast-packets> + <in-unicast-packets>9005563316138</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>18802750531247948</out-octets> - <out-packets>13963221578498</out-packets> + <out-octets>20262317796566990</out-octets> + <out-packets>15000694851028</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>20811361218</out-multicast-packets> - <out-unicast-packets>13942410217280</out-unicast-packets> + <out-multicast-packets>22292081081</out-multicast-packets> + <out-unicast-packets>14978402769947</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -24429,17 +24529,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>28353706</in-multicast-packets> - <in-unicast-packets>8617498378485</in-unicast-packets> + <in-multicast-packets>29688424</in-multicast-packets> + <in-unicast-packets>9005563316138</in-unicast-packets> <in-errors>6</in-errors> - <in-octets>11079616731394179</in-octets> - <in-utilization>889</in-utilization> + <in-octets>11563391593203855</in-octets> + <in-utilization>615</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>20811361218</out-multicast-packets> - <out-unicast-packets>13942410217280</out-unicast-packets> + <out-multicast-packets>22292081081</out-multicast-packets> + <out-unicast-packets>14978402769947</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>18802750531247948</out-octets> - <out-utilization>1489</out-utilization> + <out-octets>20262317796566990</out-octets> + <out-utilization>1619</out-utilization> <collisions>0</collisions> <crc-align-errors>1</crc-align-errors> <drop-events>0</drop-events> @@ -24448,9 +24548,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>20839714924</total-multicast-packets> - <total-octets>29882367262642127</total-octets> - <total-packets>22580748310689</total-packets> + <total-multicast-packets>22321769505</total-multicast-packets> + <total-octets>31825709389770845</total-octets> + <total-packets>24006287855590</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -24473,13 +24573,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>100003785442</octets-64> - <octets-65-to-127>2839925662112</octets-65-to-127> - <octets-128-to-255>251181768325</octets-128-to-255> - <octets-256-to-511>120691504264</octets-256-to-511> - <octets-512-to-1023>155843524517</octets-512-to-1023> - <octets-1024-to-1518>1662971845667</octets-1024-to-1518> - <octets-1519-to-max>17450130220362</octets-1519-to-max> + <octets-64>103910351124</octets-64> + <octets-65-to-127>2979297082934</octets-65-to-127> + <octets-128-to-255>259800577238</octets-128-to-255> + <octets-256-to-511>125536739232</octets-256-to-511> + <octets-512-to-1023>164250914424</octets-512-to-1023> + <octets-1024-to-1518>1733747757008</octets-1024-to-1518> + <octets-1519-to-max>18639744433630</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -24555,7 +24655,7 @@ <remote-system> <remote-time-mark>1948842190</remote-time-mark> <remote-index>37</remote-index> - <age>6622173</age> + <age>7549781</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> @@ -24568,12 +24668,12 @@ </remote-system> <statistics> <transmit> - <frames>625597</frames> + <frames>656517</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>3</age-outs> - <frames>649490</frames> + <frames>680411</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -24702,19 +24802,19 @@ <last-cleared-time>2024-06-27T09:01:30.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>2</in-errors> - <in-octets>11158302183951514</in-octets> - <in-packets>8667393880622</in-packets> + <in-octets>11646814389977274</in-octets> + <in-packets>9059386830869</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>32928786</in-multicast-packets> - <in-unicast-packets>8667360951836</in-unicast-packets> + <in-multicast-packets>34617373</in-multicast-packets> + <in-unicast-packets>9059352213496</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>19611407809653766</out-octets> - <out-packets>14371978808259</out-packets> + <out-octets>21077824969138681</out-octets> + <out-packets>15413469974813</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>25660371562</out-multicast-packets> - <out-unicast-packets>14346318436697</out-unicast-packets> + <out-multicast-packets>26880721204</out-multicast-packets> + <out-unicast-packets>15386589253609</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -24789,17 +24889,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>32928786</in-multicast-packets> - <in-unicast-packets>8667360951836</in-unicast-packets> + <in-multicast-packets>34617373</in-multicast-packets> + <in-unicast-packets>9059352213496</in-unicast-packets> <in-errors>2</in-errors> - <in-octets>11158302183951514</in-octets> - <in-utilization>888</in-utilization> + <in-octets>11646814389977274</in-octets> + <in-utilization>569</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>25660371562</out-multicast-packets> - <out-unicast-packets>14346318436697</out-unicast-packets> + <out-multicast-packets>26880721204</out-multicast-packets> + <out-unicast-packets>15386589253609</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>19611407809653766</out-octets> - <out-utilization>1696</out-utilization> + <out-octets>21077824969138681</out-octets> + <out-utilization>1725</out-utilization> <collisions>0</collisions> <crc-align-errors>1</crc-align-errors> <drop-events>0</drop-events> @@ -24808,9 +24908,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>25693300348</total-multicast-packets> - <total-octets>30769709993605280</total-octets> - <total-packets>23039372688881</total-packets> + <total-multicast-packets>26915338577</total-multicast-packets> + <total-octets>32724639359115955</total-octets> + <total-packets>24472856805682</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -24833,13 +24933,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>99152006934</octets-64> - <octets-65-to-127>2736606861573</octets-65-to-127> - <octets-128-to-255>172940399396</octets-128-to-255> - <octets-256-to-511>97054883863</octets-256-to-511> - <octets-512-to-1023>150383430805</octets-512-to-1023> - <octets-1024-to-1518>2235802398804</octets-1024-to-1518> - <octets-1519-to-max>17547432707506</octets-1519-to-max> + <octets-64>102906418190</octets-64> + <octets-65-to-127>2876761319362</octets-65-to-127> + <octets-128-to-255>181680505928</octets-128-to-255> + <octets-256-to-511>102455529431</octets-256-to-511> + <octets-512-to-1023>158630504994</octets-512-to-1023> + <octets-1024-to-1518>2301412726977</octets-1024-to-1518> + <octets-1519-to-max>18749009800800</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -24915,7 +25015,7 @@ <remote-system> <remote-time-mark>1948842190</remote-time-mark> <remote-index>38</remote-index> - <age>6622173</age> + <age>7549781</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> @@ -24928,12 +25028,12 @@ </remote-system> <statistics> <transmit> - <frames>625597</frames> + <frames>656517</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>3</age-outs> - <frames>649535</frames> + <frames>680456</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -30426,19 +30526,19 @@ <last-cleared-time>2024-06-25T09:02:23.0Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>77924600494993726</in-octets> - <in-packets>66052868248263</in-packets> + <in-octets>82093365733935376</in-octets> + <in-packets>69583459204792</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>23223664</in-multicast-packets> - <in-unicast-packets>66052845024599</in-unicast-packets> + <in-multicast-packets>25022197</in-multicast-packets> + <in-unicast-packets>69583434182595</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>62634676904949217</out-octets> - <out-packets>55896487911503</out-packets> + <out-octets>67680525599793871</out-octets> + <out-packets>60058471117582</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>393464663425</out-multicast-packets> - <out-unicast-packets>55503023248078</out-unicast-packets> + <out-multicast-packets>420136207959</out-multicast-packets> + <out-unicast-packets>59638334909623</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -30513,17 +30613,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>23223664</in-multicast-packets> - <in-unicast-packets>66052845024599</in-unicast-packets> + <in-multicast-packets>25022197</in-multicast-packets> + <in-unicast-packets>69583434182595</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>77924600494993726</in-octets> - <in-utilization>981</in-utilization> + <in-octets>82093365733935376</in-octets> + <in-utilization>1122</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>393464663425</out-multicast-packets> - <out-unicast-packets>55503023248078</out-unicast-packets> + <out-multicast-packets>420136207959</out-multicast-packets> + <out-unicast-packets>59638334909623</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>62634676904949217</out-octets> - <out-utilization>1005</out-utilization> + <out-octets>67680525599793871</out-octets> + <out-utilization>1681</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -30532,9 +30632,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>393487887089</total-multicast-packets> - <total-octets>140559277399942943</total-octets> - <total-packets>121949356159766</total-packets> + <total-multicast-packets>420161230156</total-multicast-packets> + <total-octets>149773891333729247</total-octets> + <total-packets>129641930322374</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -30557,13 +30657,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>1155004113256</octets-64> - <octets-65-to-127>26078995268113</octets-65-to-127> - <octets-128-to-255>3255505587818</octets-128-to-255> - <octets-256-to-511>1464876679999</octets-256-to-511> - <octets-512-to-1023>2642734577671</octets-512-to-1023> - <octets-1024-to-1518>26158951394800</octets-1024-to-1518> - <octets-1519-to-max>61193288538109</octets-1519-to-max> + <octets-64>1214383752664</octets-64> + <octets-65-to-127>27530977223507</octets-65-to-127> + <octets-128-to-255>3434079305495</octets-128-to-255> + <octets-256-to-511>1545841334573</octets-256-to-511> + <octets-512-to-1023>2782615352022</octets-512-to-1023> + <octets-1024-to-1518>27577491614344</octets-1024-to-1518> + <octets-1519-to-max>65556541739769</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -30639,7 +30739,7 @@ <remote-system> <remote-time-mark>716827080</remote-time-mark> <remote-index>1</remote-index> - <age>18942325</age> + <age>19869933</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> @@ -30659,16 +30759,16 @@ </remote-system> <statistics> <transmit> - <frames>631415</frames> + <frames>662336</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>0</age-outs> - <frames>682658</frames> + <frames>716083</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2730632</tlv-unknown> + <tlv-unknown>2864332</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -42451,10 +42551,10 @@ <statistics> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>509495836</in-octets> - <in-packets>1515974</in-packets> + <in-octets>533899312</in-octets> + <in-packets>1588409</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>1515968</in-broadcast-packets> + <in-broadcast-packets>1588403</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>6</in-unicast-packets> <out-discards>0</out-discards> @@ -42492,11 +42592,11 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>1515968</in-broadcast-packets> + <in-broadcast-packets>1588403</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>6</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>509495836</in-octets> + <in-octets>533899312</in-octets> <in-utilization>0</in-utilization> <out-broadcast-packets>19</out-broadcast-packets> <out-multicast-packets>0</out-multicast-packets> @@ -42511,10 +42611,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>1515987</total-broadcast-packets> + <total-broadcast-packets>1588422</total-broadcast-packets> <total-multicast-packets>0</total-multicast-packets> - <total-octets>509497052</total-octets> - <total-packets>1515993</total-packets> + <total-octets>533900528</total-octets> + <total-packets>1588428</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -42533,10 +42633,10 @@ </error> </ethernet-like-medium> <packet-size> - <octets-64>53059</octets-64> + <octets-64>55396</octets-64> <octets-65-to-127>266</octets-65-to-127> <octets-128-to-255>0</octets-128-to-255> - <octets-256-to-511>1462668</octets-256-to-511> + <octets-256-to-511>1532766</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> @@ -42857,10 +42957,10 @@ <statistics> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>509487404</in-octets> - <in-packets>1515948</in-packets> + <in-octets>533890880</in-octets> + <in-packets>1588383</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>1515942</in-broadcast-packets> + <in-broadcast-packets>1588377</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>6</in-unicast-packets> <out-discards>0</out-discards> @@ -42898,11 +42998,11 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>1515942</in-broadcast-packets> + <in-broadcast-packets>1588377</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>6</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>509487404</in-octets> + <in-octets>533890880</in-octets> <in-utilization>0</in-utilization> <out-broadcast-packets>5</out-broadcast-packets> <out-multicast-packets>0</out-multicast-packets> @@ -42917,10 +43017,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>1515947</total-broadcast-packets> + <total-broadcast-packets>1588382</total-broadcast-packets> <total-multicast-packets>0</total-multicast-packets> - <total-octets>509487724</total-octets> - <total-packets>1515953</total-packets> + <total-octets>533891200</total-octets> + <total-packets>1588388</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -42939,10 +43039,10 @@ </error> </ethernet-like-medium> <packet-size> - <octets-64>53043</octets-64> + <octets-64>55380</octets-64> <octets-65-to-127>266</octets-65-to-127> <octets-128-to-255>0</octets-128-to-255> - <octets-256-to-511>1462644</octets-256-to-511> + <octets-256-to-511>1532742</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> @@ -43258,6 +43358,1322 @@ </dot1x> </ethernet> </port> + <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>17295485</out-discard-packets> + <out-discard-octets>1696699219</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>12</icmp-out-msgs> + <icmp-out-errors>12</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>12</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>17295485</out-discard-packets> + <out-discard-octets>1696699219</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>33125449339706</out-packets> + <out-octets>42491367914882239</out-octets> + <out-discard-packets>27195</out-discard-packets> + <out-discard-octets>3259871</out-discard-octets> + <in-packets>584038347</in-packets> + <in-octets>90545092664</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>67150414029368</out-packets> + <out-octets>77067207115053440</out-octets> + <in-packets>140400549939072</in-packets> + <in-octets>166173405776654230</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>1863024</icmp-in-msgs> + <icmp-in-errors>938</icmp-in-errors> + <icmp-in-dest-unreachables>932</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>1749476</icmp-in-echos> + <icmp-in-echo-replies>171</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>112439</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>82944461</icmp-out-msgs> + <icmp-out-errors>80357462</icmp-out-errors> + <icmp-out-dest-unreachables>4</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>28903</icmp-out-echos> + <icmp-out-echo-replies>2558096</icmp-out-echo-replies> + <icmp-out-time-exceeds>80357458</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>103537</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>22404845760978</out-packets> + <out-octets>28973290776105207</out-octets> + <out-discard-packets>27195</out-discard-packets> + <out-discard-octets>3259871</out-discard-octets> + <in-packets>79626825363</in-packets> + <in-octets>48696889744258</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>13658</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>2441502</icmp6-in-msgs> + <icmp6-in-errors>25</icmp6-in-errors> + <icmp6-in-dest-unreachables>6</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>1710599</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>17746</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>713129</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>12600110</icmp6-out-msgs> + <icmp6-out-errors>10099626</icmp6-out-errors> + <icmp6-out-dest-unreachables>20</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>10099606</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>1764011</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>718727</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>17746</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>495706</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>10720603578728</out-packets> + <out-octets>13518077138777032</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>8214443011</in-packets> + <in-octets>4084880385479</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>13812</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>17</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>2025-02-01T20:59:04.9Z</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>7785633477123</out-packets> + <out-octets>9804820865758675</out-octets> + <out-discard-packets>7243694</out-discard-packets> + <out-discard-octets>694229487</out-discard-octets> + <in-packets>952455478</in-packets> + <in-octets>123057468575</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>125717493262626</out-packets> + <out-octets>149525979246715765</out-octets> + <in-packets>98172386532837</in-packets> + <in-octets>128415408617027201</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>21016500</icmp-in-msgs> + <icmp-in-errors>12184</icmp-in-errors> + <icmp-in-dest-unreachables>11871</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>20027483</icmp-in-echos> + <icmp-in-echo-replies>29303</icmp-in-echo-replies> + <icmp-in-time-exceeds>313</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>947527</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>310673209</icmp-out-msgs> + <icmp-out-errors>305386314</icmp-out-errors> + <icmp-out-dest-unreachables>3993</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>206217</icmp-out-echos> + <icmp-out-echo-replies>5080678</icmp-out-echo-replies> + <icmp-out-time-exceeds>305382321</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>8734047</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>3812318056108</out-packets> + <out-octets>4260014118866243</out-octets> + <out-discard-packets>7243694</out-discard-packets> + <out-discard-octets>694229487</out-discard-octets> + <in-packets>1103880857688</in-packets> + <in-octets>1231394702164323</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>14361</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>25417519</icmp6-in-msgs> + <icmp6-in-errors>1061</icmp6-in-errors> + <icmp6-in-dest-unreachables>718</icmp6-in-dest-unreachables> + <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> + <icmp6-in-time-exceeds>302</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>24193129</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>525017</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>698206</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>34230710</icmp6-out-msgs> + <icmp6-out-errors>27520318</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>27520239</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>4689686</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>707684</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>525016</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>7930733</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>3973315421015</out-packets> + <out-octets>5544806746892432</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>24199539698</in-packets> + <in-octets>14998888726805</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>14384</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::e2cb:19ff:fe8f:45d0</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>e0:cb:19:8f:45:d0</mac-address> + <type>dynamic</type> + <timer>24</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>2025-02-01T12:33: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>4491190443968</out-packets> + <out-octets>5359554501990950</out-octets> + <out-discard-packets>255502618</out-discard-packets> + <out-discard-octets>21547753988</out-discard-octets> + <in-packets>871935973</in-packets> + <in-octets>97416701424</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>65051370002198</out-packets> + <out-octets>76596642110649263</out-octets> + <in-packets>79839535993397</in-packets> + <in-octets>91619747179253385</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>5545166</icmp-in-msgs> + <icmp-in-errors>2858</icmp-in-errors> + <icmp-in-dest-unreachables>2447</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>5054138</icmp-in-echos> + <icmp-in-echo-replies>347</icmp-in-echo-replies> + <icmp-in-time-exceeds>411</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>487823</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>904619933</icmp-out-msgs> + <icmp-out-errors>884014803</icmp-out-errors> + <icmp-out-dest-unreachables>125</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>739516</icmp-out-echos> + <icmp-out-echo-replies>19865614</icmp-out-echo-replies> + <icmp-out-time-exceeds>884014678</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>272787001</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>3188738572147</out-packets> + <out-octets>3695576549212525</out-octets> + <out-discard-packets>255502618</out-discard-packets> + <out-discard-octets>21547753988</out-discard-octets> + <in-packets>1349543816442</in-packets> + <in-octets>1280821983622170</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>12669</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>7894555</icmp6-in-msgs> + <icmp6-in-errors>242680</icmp6-in-errors> + <icmp6-in-dest-unreachables>69</icmp6-in-dest-unreachables> + <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> + <icmp6-in-time-exceeds>242578</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>6343049</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>599876</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>708949</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>168935446</icmp6-out-msgs> + <icmp6-out-errors>140904949</icmp6-out-errors> + <icmp6-out-dest-unreachables>14643</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>140890303</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>25880595</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>714479</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>599876</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>76348444</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>1302451871821</out-packets> + <out-octets>1663977952778425</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>8334401977</in-packets> + <in-octets>2723083639979</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>7347</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>18</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>3381953227312</out-packets> + <out-octets>4148990147134273</out-octets> + <out-discard-packets>20</out-discard-packets> + <out-discard-octets>136886</out-discard-octets> + <in-packets>113420532</in-packets> + <in-octets>31104356239</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>42099021105381</out-packets> + <out-octets>57614616781863525</out-octets> + <in-packets>27065080801446</in-packets> + <in-octets>34788674184159156</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>758036</icmp-in-msgs> + <icmp-in-errors>11</icmp-in-errors> + <icmp-in-dest-unreachables>8</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>70052</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>687826</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>5598210</icmp-out-msgs> + <icmp-out-errors>5541490</icmp-out-errors> + <icmp-out-dest-unreachables>1319</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>49129</icmp-out-echos> + <icmp-out-echo-replies>7591</icmp-out-echo-replies> + <icmp-out-time-exceeds>5540171</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>2656</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>3182626416154</out-packets> + <out-octets>3855041100295517</out-octets> + <out-discard-packets>20</out-discard-packets> + <out-discard-octets>136886</out-discard-octets> + <in-packets>36272534840</in-packets> + <in-octets>19450621176489</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>11883</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>1170173</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>77006</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>390072</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>702593</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>5396376</icmp6-out-msgs> + <icmp6-out-errors>4302055</icmp6-out-errors> + <icmp6-out-dest-unreachables>61</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>4301994</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>360</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>703889</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>390072</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>2332366</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>199326811158</out-packets> + <out-octets>293949046838756</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>9547994572</in-packets> + <in-octets>9259808815142</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>13625</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>17</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>2025-01-21T10:31:52.8Z</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>4496100405695</out-packets> + <out-octets>6155295487294488</out-octets> + <out-discard-packets>7</out-discard-packets> + <out-discard-octets>469</out-discard-octets> + <in-packets>64414660</in-packets> + <in-octets>8213309398</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>612170390106</out-packets> + <out-octets>671546833262144</out-octets> + <in-packets>4723311339247</in-packets> + <in-octets>4966383698490336</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>310385</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>198365</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>112015</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>2044868</icmp-out-msgs> + <icmp-out-errors>2022111</icmp-out-errors> + <icmp-out-dest-unreachables>500</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>7492</icmp-out-echos> + <icmp-out-echo-replies>15265</icmp-out-echo-replies> + <icmp-out-time-exceeds>2021611</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>1374827233168</out-packets> + <out-octets>1687669931330521</out-octets> + <out-discard-packets>7</out-discard-packets> + <out-discard-octets>469</out-discard-octets> + <in-packets>2809429913</in-packets> + <in-octets>685170215732</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>13462</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>680242</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>11834</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>15968</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>620416</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>1168605</icmp6-out-msgs> + <icmp6-out-errors>529925</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>529925</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>942</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>621770</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>15968</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>3121273172527</out-packets> + <out-octets>4467625555963967</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>true</is-router> + <mtu>9000</mtu> + <mac-address>e4:5d:37:87:3d:83</mac-address> + <type>dynamic</type> + <timer>13952</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>27</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/data/rt0.ams.nl.geant.net-vprns.xml b/test/interface_stats/data/rt0.ams.nl.geant.net-vprns.xml deleted file mode 100644 index ba1cf11a2f5b3ef2d7fdd03bf80bb84e6946e8b6..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.ams.nl.geant.net-vprns.xml +++ /dev/null @@ -1,4 +0,0 @@ -<rpc-reply message-id="urn:uuid:252d1cbe-5e71-473b-a61d-f0c388b7e908"> - <data> - </data> -</rpc-reply> \ No newline at end of file diff --git a/test/interface_stats/data/rt0.ath.gr.lab.office.geant.net-state.xml b/test/interface_stats/data/rt0.ath.gr.lab.office.geant.net-state.xml new file mode 100644 index 0000000000000000000000000000000000000000..e939b7d2f5926c836b66806e96d00c8006eb1251 --- /dev/null +++ b/test/interface_stats/data/rt0.ath.gr.lab.office.geant.net-state.xml @@ -0,0 +1,50052 @@ +<rpc-reply message-id="urn:uuid:e584129f-e17e-454a-8ebf-581ca2f847cf"> + <data> + <state> + <lag> + <lag-name>lag-1</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>257554205</in-octets> + <in-packets>2316642</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>3721</in-broadcast-packets> + <in-multicast-packets>2312917</in-multicast-packets> + <in-unicast-packets>4</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>193248697</out-octets> + <out-packets>1495450</out-packets> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>1493055</out-multicast-packets> + <out-unicast-packets>2391</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-2</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>15039663811274891</in-octets> + <in-packets>10122027872235</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>2</in-broadcast-packets> + <in-multicast-packets>10568619</in-multicast-packets> + <in-unicast-packets>10122017303614</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>17233642189383307</out-octets> + <out-packets>11522544813402</out-packets> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>10568158</out-multicast-packets> + <out-unicast-packets>11522534245241</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-7</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>3900267256</in-octets> + <in-packets>34379811</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>3</in-broadcast-packets> + <in-multicast-packets>3132587</in-multicast-packets> + <in-unicast-packets>31247221</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>16032407667</out-octets> + <out-packets>64331905</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>3132029</out-multicast-packets> + <out-unicast-packets>61199874</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-14</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>1737956721</in-octets> + <in-packets>15982857</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>20448</in-broadcast-packets> + <in-multicast-packets>7686922</in-multicast-packets> + <in-unicast-packets>8275487</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>1755720606</out-octets> + <out-packets>16928303</out-packets> + <out-broadcast-packets>6807</out-broadcast-packets> + <out-multicast-packets>8272568</out-multicast-packets> + <out-unicast-packets>8648928</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-16</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>11856320508908653</in-octets> + <in-packets>8063950839374</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>34890088</in-broadcast-packets> + <in-multicast-packets>20946799</in-multicast-packets> + <in-unicast-packets>8063895002487</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>11507427798796313</out-octets> + <out-packets>7763732870950</out-packets> + <out-broadcast-packets>4986</out-broadcast-packets> + <out-multicast-packets>16719969</out-multicast-packets> + <out-unicast-packets>7763716145995</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-17</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>9042367653891528</in-octets> + <in-packets>6093129278792</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>158684</in-broadcast-packets> + <in-multicast-packets>2145</in-multicast-packets> + <in-unicast-packets>6093129117963</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>8519693063512013</out-octets> + <out-packets>5818047895450</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>263785</out-multicast-packets> + <out-unicast-packets>5818047631663</out-unicast-packets> + </statistics> + </lag> + <port> + <port-id>1/x1/1/c1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.7Z</counter-discontinuity-time> + <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/x1/1/c1/1</port-id> + <statistics> + <counter-discontinuity-time>2025-01-14T09:29:46.4Z</counter-discontinuity-time> + <last-cleared-time>2025-01-14T09:29:46.4Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>3900267256</in-octets> + <in-packets>34379811</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>3</in-broadcast-packets> + <in-multicast-packets>3132587</in-multicast-packets> + <in-unicast-packets>31247221</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>16032407667</out-octets> + <out-packets>64331905</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>3132029</out-multicast-packets> + <out-unicast-packets>61199874</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>11</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-7 | AMS-ATH | TO-rt0.ams-1/1/c</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>3</in-broadcast-packets> + <in-multicast-packets>3132587</in-multicast-packets> + <in-unicast-packets>31247221</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>3900267256</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>3132029</out-multicast-packets> + <out-unicast-packets>61199874</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>16032407667</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>5</total-broadcast-packets> + <total-multicast-packets>6264616</total-multicast-packets> + <total-octets>19932674923</total-octets> + <total-packets>98711716</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>1107858</octets-64> + <octets-65-to-127>31269661</octets-65-to-127> + <octets-128-to-255>39895258</octets-128-to-255> + <octets-256-to-511>24791340</octets-256-to-511> + <octets-512-to-1023>1554282</octets-512-to-1023> + <octets-1024-to-1518>93317</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> + <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:40</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>569931967</remote-time-mark> + <remote-index>35</remote-index> + <age>2745405</age> + <chassis-id>18:C3:00:91:FD:18</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-7 | AMS-ATH | to-rt0.ath-1/x1/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.ams.nl</system-name> + </remote-system> + <statistics> + <transmit> + <frames>215604</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>5</age-outs> + <frames>215602</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:42:57.6Z</counter-discontinuity-time> + <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/x1/1/c2/1</port-id> + <statistics> + <counter-discontinuity-time>2025-01-24T15:12:51.4Z</counter-discontinuity-time> + <last-cleared-time>2025-01-24T15:12:51.4Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>257554205</in-octets> + <in-packets>2316642</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>3721</in-broadcast-packets> + <in-multicast-packets>2312917</in-multicast-packets> + <in-unicast-packets>4</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>193248697</out-octets> + <out-packets>1495450</out-packets> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>1493055</out-multicast-packets> + <out-unicast-packets>2391</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>7</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 ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120) - QFX</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>3721</in-broadcast-packets> + <in-multicast-packets>2312917</in-multicast-packets> + <in-unicast-packets>4</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>257554205</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>1493055</out-multicast-packets> + <out-unicast-packets>2391</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>193248697</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>3725</total-broadcast-packets> + <total-multicast-packets>3805972</total-multicast-packets> + <total-octets>450802902</total-octets> + <total-packets>3812092</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>771493</octets-64> + <octets-65-to-127>59804</octets-65-to-127> + <octets-128-to-255>2928737</octets-128-to-255> + <octets-256-to-511>52058</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>605093607</remote-time-mark> + <remote-index>36</remote-index> + <age>2393789</age> + <chassis-id>20:D8:0B:92:92:47</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>627</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>xe-0/2/2</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. ex3400-24t Ethernet Switch, kernel JUNOS 20.2R3-S3.6, Build date: 2021-11-10 20:23:41 UTC Copyright (c) 1996-2021 Juniper Networks, Inc.</system-description> + <system-name>sw1.lon.uk.lab.office.geant.net</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.254.55</mgmt-address> + <interface-subtype>if-index</interface-subtype> + <interface-id>33</interface-id> + <object-identifier>16975361.33627905.16843041</object-identifier> + </mgmt-address> + </remote-system> + <statistics> + <transmit> + <frames>163220</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>176394</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1019372</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:42:57.4Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:49:24.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>24</in-errors> + <in-octets>5924643642786262</in-octets> + <in-packets>4029479620472</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>29102082</in-broadcast-packets> + <in-multicast-packets>8476083</in-multicast-packets> + <in-unicast-packets>4029442042307</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>5773915163954375</out-octets> + <out-packets>3894886879562</out-packets> + <out-broadcast-packets>4965</out-broadcast-packets> + <out-multicast-packets>8604315</out-multicast-packets> + <out-unicast-packets>3894878270282</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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 ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120) - QFX</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>29102082</in-broadcast-packets> + <in-multicast-packets>8476083</in-multicast-packets> + <in-unicast-packets>4029442042307</in-unicast-packets> + <in-errors>24</in-errors> + <in-octets>5924643642786262</in-octets> + <in-utilization>6993</in-utilization> + <out-broadcast-packets>4965</out-broadcast-packets> + <out-multicast-packets>8604315</out-multicast-packets> + <out-unicast-packets>3894878270282</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>5773915163954375</out-octets> + <out-utilization>4238</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>10</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>4</undersize-packets> + <total-broadcast-packets>29107047</total-broadcast-packets> + <total-multicast-packets>17080398</total-multicast-packets> + <total-octets>11698558806740637</total-octets> + <total-packets>7924366500034</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>10</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>14508969</octets-64> + <octets-65-to-127>244255034287</octets-65-to-127> + <octets-128-to-255>1239931982</octets-128-to-255> + <octets-256-to-511>2212368401</octets-256-to-511> + <octets-512-to-1023>4529035273</octets-512-to-1023> + <octets-1024-to-1518>4301444128</octets-1024-to-1518> + <octets-1519-to-max>7667814176994</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>59365247</remote-time-mark> + <remote-index>4</remote-index> + <age>7851072</age> + <chassis-id>F4:CC:55:E2:A3:00</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>535</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>xe-0/0/8</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. qfx5100-48s-6q Ethernet Switch, kernel JUNOS 21.4R1.12, Build date: 2021-12-17 14:45:37 UTC Copyright (c) 1996-2021 Juniper Networks, Inc.</system-description> + <system-name>qfx1.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>all-802</mgmt-address-subtype> + <mgmt-address>f4:cc:55:e2:a7:f8</mgmt-address> + <interface-subtype>if-index</interface-subtype> + <interface-id>17</interface-id> + <object-identifier>16975361.33627905.16843025</object-identifier> + </mgmt-address> + </remote-system> + <statistics> + <transmit> + <frames>261711</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>282902</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>2546118</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:42:58.2Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:49:24.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>4158</in-errors> + <in-octets>9042367653891528</in-octets> + <in-packets>6093129278792</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>158684</in-broadcast-packets> + <in-multicast-packets>2145</in-multicast-packets> + <in-unicast-packets>6093129117963</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>8519693063512013</out-octets> + <out-packets>5818047895450</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>263785</out-multicast-packets> + <out-unicast-packets>5818047631663</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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 TAT-ipref-tests-l2circuit-to-rt1.lon</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>158684</in-broadcast-packets> + <in-multicast-packets>2145</in-multicast-packets> + <in-unicast-packets>6093129117963</in-unicast-packets> + <in-errors>4158</in-errors> + <in-octets>9042367653891528</in-octets> + <in-utilization>9658</in-utilization> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>263785</out-multicast-packets> + <out-unicast-packets>5818047631663</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>8519693063512013</out-octets> + <out-utilization>9705</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>2049</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>34</undersize-packets> + <total-broadcast-packets>158686</total-broadcast-packets> + <total-multicast-packets>265930</total-multicast-packets> + <total-octets>17562060717403541</total-octets> + <total-packets>11911177174242</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>2075</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>18158970</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>18954340</octets-64> + <octets-65-to-127>355796963483</octets-65-to-127> + <octets-128-to-255>512147058</octets-128-to-255> + <octets-256-to-511>979571911</octets-256-to-511> + <octets-512-to-1023>2234099715</octets-512-to-1023> + <octets-1024-to-1518>11551653596705</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>261704</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:42:57.4Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:49:24.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>63</in-errors> + <in-octets>5931676866122391</in-octets> + <in-packets>4034471218902</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>5788006</in-broadcast-packets> + <in-multicast-packets>12470716</in-multicast-packets> + <in-unicast-packets>4034452960180</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>5733512634841938</out-octets> + <out-packets>3868845991388</out-packets> + <out-broadcast-packets>21</out-broadcast-packets> + <out-multicast-packets>8115654</out-multicast-packets> + <out-unicast-packets>3868837875713</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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 ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120) - QFX</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>5788006</in-broadcast-packets> + <in-multicast-packets>12470716</in-multicast-packets> + <in-unicast-packets>4034452960180</in-unicast-packets> + <in-errors>63</in-errors> + <in-octets>5931676866122391</in-octets> + <in-utilization>5803</in-utilization> + <out-broadcast-packets>21</out-broadcast-packets> + <out-multicast-packets>8115654</out-multicast-packets> + <out-unicast-packets>3868837875713</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>5733512634841938</out-octets> + <out-utilization>2170</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>15</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>33</undersize-packets> + <total-broadcast-packets>5788027</total-broadcast-packets> + <total-multicast-packets>20586370</total-multicast-packets> + <total-octets>11665189500964329</total-octets> + <total-packets>7903317210290</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>15</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>5743712</octets-64> + <octets-65-to-127>245182673832</octets-65-to-127> + <octets-128-to-255>1194815411</octets-128-to-255> + <octets-256-to-511>2232796129</octets-256-to-511> + <octets-512-to-1023>4567946107</octets-512-to-1023> + <octets-1024-to-1518>4342777125</octets-1024-to-1518> + <octets-1519-to-max>7645790457974</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>59365287</remote-time-mark> + <remote-index>5</remote-index> + <age>7851072</age> + <chassis-id>F4:CC:55:E2:A3:00</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>630</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>xe-1/0/8</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. qfx5100-48s-6q Ethernet Switch, kernel JUNOS 21.4R1.12, Build date: 2021-12-17 14:45:37 UTC Copyright (c) 1996-2021 Juniper Networks, Inc.</system-description> + <system-name>qfx1.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>all-802</mgmt-address-subtype> + <mgmt-address>f4:cc:55:e2:a7:f8</mgmt-address> + <interface-subtype>if-index</interface-subtype> + <interface-id>17</interface-id> + <object-identifier>16975361.33627905.16843025</object-identifier> + </mgmt-address> + </remote-system> + <statistics> + <transmit> + <frames>261711</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>282890</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>2546010</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <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/x1/1/c4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <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/x1/1/c4/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c5</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c6</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.8Z</counter-discontinuity-time> + <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/x1/1/c6/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c6/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c7</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c7/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c8</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c8/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>13393765</in-octets> + <in-packets>140987</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>140987</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>13393670</out-octets> + <out-packets>140986</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>140986</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/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</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>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>140987</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>13393765</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>140986</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>13393670</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>281973</total-multicast-packets> + <total-octets>26787435</total-octets> + <total-packets>281973</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>281973</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>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:40</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>421524267</remote-time-mark> + <remote-index>34</remote-index> + <age>4229482</age> + <chassis-id>90:EC:E3:32:26:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610916353</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/x1/1/c8/1, 100-Gig Ethernet</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description/> + <system-name>rt0.bil.es</system-name> + </remote-system> + <statistics> + <transmit> + <frames>140986</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>140987</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c8/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c9</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c9/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>977619782</in-octets> + <in-packets>7129904</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>7129904</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>22101180</out-octets> + <out-packets>232644</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>232644</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/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>11</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>7129904</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>977619782</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>232644</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>22101180</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>7362548</total-multicast-packets> + <total-octets>999720962</total-octets> + <total-packets>7362548</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>232644</octets-65-to-127> + <octets-128-to-255>6878475</octets-128-to-255> + <octets-256-to-511>251429</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> + <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:40</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>483653387</remote-time-mark> + <remote-index>22</remote-index> + <age>6911226</age> + <chassis-id>B8:C2:53:DE:E0:C8</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>et-0/0/1</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>PHY INFRASTRUCTURE BACKBONE P_AE1 | AMS-AMT |</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-S7.2, Build date: 2023-04-21 19:35:28 UTC Copyright (c) 1996-2023 Juniper Networks, Inc.</system-description> + <system-name>ls2.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.27</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>232644</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>251429</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1503544</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c10</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c11</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.8Z</counter-discontinuity-time> + <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/x1/1/c12</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.9Z</counter-discontinuity-time> + <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/x1/1/c13</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.9Z</counter-discontinuity-time> + <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/x1/1/c13/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c14/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c15</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c16</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c16/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c17</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c18</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c18/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c18/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c19</port-id> + <statistics> + <counter-discontinuity-time>2024-11-18T10:54:12.7Z</counter-discontinuity-time> + <last-cleared-time>2024-11-18T10:54:12.7Z</last-cleared-time> + <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/x1/1/c19/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:42:56.7Z</counter-discontinuity-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>2386609924498540</in-octets> + <in-packets>1572207264256</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>94162</in-broadcast-packets> + <in-multicast-packets>262707</in-multicast-packets> + <in-unicast-packets>1572206907387</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2386609905351712</out-octets> + <out-packets>1572207194197</out-packets> + <out-broadcast-packets>39</out-broadcast-packets> + <out-multicast-packets>261465</out-multicast-packets> + <out-unicast-packets>1572206932693</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>9</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>94162</in-broadcast-packets> + <in-multicast-packets>262707</in-multicast-packets> + <in-unicast-packets>1572206907387</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>2386609924498540</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>39</out-broadcast-packets> + <out-multicast-packets>261465</out-multicast-packets> + <out-unicast-packets>1572206932693</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>2386609905351712</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>94201</total-broadcast-packets> + <total-multicast-packets>524172</total-multicast-packets> + <total-octets>4773219829850252</total-octets> + <total-packets>3144414458453</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>37919</octets-64> + <octets-65-to-127>742280</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>168250</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>3144413510004</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>503316480</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>503316480</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>301977837</remote-time-mark> + <remote-index>33</remote-index> + <age>5424946</age> + <chassis-id>18:C3:00:91:FD:18</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1/1/c13/1</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>1/1/c13/1, 400-Gig Ethernet</port-description> + <system-enabled-capabilities/> + <system-supported-capabilities/> + <system-description/> + <system-name>rt0.ams.nl</system-name> + </remote-system> + <statistics> + <transmit> + <frames>261461</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>3</age-outs> + <frames>261185</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c20/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c21</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c22</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c22/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c23</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c24</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c24/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c24/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c25</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c25/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>543521732503684</in-octets> + <in-packets>965115935348</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>477</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>965115934871</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>359679879346914</out-octets> + <out-packets>781254497337</out-packets> + <out-broadcast-packets>22</out-broadcast-packets> + <out-multicast-packets>163261</out-multicast-packets> + <out-unicast-packets>781254334054</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>12</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>477</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>965115934871</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>543521732503684</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>22</out-broadcast-packets> + <out-multicast-packets>163261</out-multicast-packets> + <out-unicast-packets>781254334054</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>359679879346914</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>499</total-broadcast-packets> + <total-multicast-packets>163261</total-multicast-packets> + <total-octets>903201611850598</total-octets> + <total-packets>1746370432685</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>651</octets-64> + <octets-65-to-127>910771383287</octets-65-to-127> + <octets-128-to-255>1867</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>821423781960</octets-512-to-1023> + <octets-1024-to-1518>14175264920</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:40</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>163261</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c26</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c26/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>1986816</in-octets> + <in-packets>20696</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>20696</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>1986720</out-octets> + <out-packets>20695</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>20695</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>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>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>20696</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>1986816</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>20695</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>1986720</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>41391</total-multicast-packets> + <total-octets>3973536</total-octets> + <total-packets>41391</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>41391</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:40</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>20695</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>20696</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c27</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c27/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>1990176</in-octets> + <in-packets>20731</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>20731</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>1990176</out-octets> + <out-packets>20731</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>20731</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>6</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>20731</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>1990176</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>20731</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>1990176</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>41462</total-multicast-packets> + <total-octets>3980352</total-octets> + <total-packets>41462</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>41462</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:40</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>20731</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>20731</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c28</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c29</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.9Z</counter-discontinuity-time> + <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/x1/1/c30</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.9Z</counter-discontinuity-time> + <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/x1/1/c31</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c31/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c32/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c33</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c34</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c35</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c36</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c36/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c36/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.7Z</counter-discontinuity-time> + <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/x1/1/c1/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.2Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:49:24.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>15039667785117098</in-octets> + <in-packets>10122030585810</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>2</in-broadcast-packets> + <in-multicast-packets>10568621</in-multicast-packets> + <in-unicast-packets>10122020017187</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>17233647798053822</out-octets> + <out-packets>11522548579592</out-packets> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>10568160</out-multicast-packets> + <out-unicast-packets>11522538011429</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-2 | ATH-LON | to-rt0.lon-1/1/c</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>2</in-broadcast-packets> + <in-multicast-packets>10568621</in-multicast-packets> + <in-unicast-packets>10122020017187</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>15039667785117098</in-octets> + <in-utilization>407</in-utilization> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>10568160</out-multicast-packets> + <out-unicast-packets>11522538011429</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>17233647798053822</out-octets> + <out-utilization>566</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>5</total-broadcast-packets> + <total-multicast-packets>21136781</total-multicast-packets> + <total-octets>32273315583170920</total-octets> + <total-packets>21644579165402</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>3616467</octets-64> + <octets-65-to-127>639870246547</octets-65-to-127> + <octets-128-to-255>2031632412</octets-128-to-255> + <octets-256-to-511>3867265763</octets-256-to-511> + <octets-512-to-1023>54602786915</octets-512-to-1023> + <octets-1024-to-1518>7617413561</octets-1024-to-1518> + <octets-1519-to-max>20936586203737</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:40</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>59364355</remote-time-mark> + <remote-index>1</remote-index> + <age>7851082</age> + <chassis-id>9C:E0:41:60:F7:E8</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-2 | ATH-LON | TO-rt0.ath-2/x1/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>261707</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>261706</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:01.8Z</counter-discontinuity-time> + <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/x1/1/c2/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-27T14:15:44.8Z</counter-discontinuity-time> + <last-cleared-time>2024-11-27T14:15:44.8Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>1737957025</in-octets> + <in-packets>15982860</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>20448</in-broadcast-packets> + <in-multicast-packets>7686923</in-multicast-packets> + <in-unicast-packets>8275489</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>1755721030</out-octets> + <out-packets>16928307</out-packets> + <out-broadcast-packets>6807</out-broadcast-packets> + <out-multicast-packets>8272571</out-multicast-packets> + <out-unicast-packets>8648929</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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 CPE-ls1.ath P_lag-14-lab_manual-qinq</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>20448</in-broadcast-packets> + <in-multicast-packets>7686923</in-multicast-packets> + <in-unicast-packets>8275489</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>1737957025</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>6807</out-broadcast-packets> + <out-multicast-packets>8272571</out-multicast-packets> + <out-unicast-packets>8648929</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>1755721030</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>27255</total-broadcast-packets> + <total-multicast-packets>15959494</total-multicast-packets> + <total-octets>3493678055</total-octets> + <total-packets>32911167</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>19573397</octets-65-to-127> + <octets-128-to-255>13104920</octets-128-to-255> + <octets-256-to-511>232768</octets-256-to-511> + <octets-512-to-1023>13</octets-512-to-1023> + <octets-1024-to-1518>69</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>483653385</remote-time-mark> + <remote-index>8</remote-index> + <age>6459510</age> + <chassis-id>B8:C2:53:DE:E0:C8</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>xe-0/1/0</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>xe-0/1/0</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-S7.2, Build date: 2023-04-21 19:35:28 UTC Copyright (c) 1996-2023 Juniper Networks, Inc.</system-description> + <system-name>ls2.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.27</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>232617</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>251401</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1238284</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <in-discards>0</in-discards> + <in-errors>16</in-errors> + <in-octets>836360162</in-octets> + <in-packets>6009747</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>6009747</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>21866280</out-octets> + <out-packets>232620</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>232620</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/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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>6009747</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>16</in-errors> + <in-octets>836360162</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>232620</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>21866280</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>5</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>6</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>6242367</total-multicast-packets> + <total-octets>858226442</total-octets> + <total-packets>6242367</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>5</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>232620</octets-65-to-127> + <octets-128-to-255>5758437</octets-128-to-255> + <octets-256-to-511>251310</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> + <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:40</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>483653495</remote-time-mark> + <remote-index>9</remote-index> + <age>5785737</age> + <chassis-id>B8:C2:53:DE:E0:C8</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>xe-0/1/2</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>PHY CUSTOMER JISC P_AE12 SRF24022 | #JISC-AP2-LL4 | JISC ID: J/2C/0410/04/1CGE | </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-S7.2, Build date: 2023-04-21 19:35:28 UTC Copyright (c) 1996-2023 Juniper Networks, Inc.</system-description> + <system-name>ls2.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.27</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>232620</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>251310</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1261876</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <in-discards>0</in-discards> + <in-errors>292</in-errors> + <in-octets>22703444</in-octets> + <in-packets>241526</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>241526</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>22703444</out-octets> + <out-packets>241526</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>241526</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/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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>241526</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>292</in-errors> + <in-octets>22703444</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>241526</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>22703444</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>135</fragments> + <jabbers>1</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>20</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>483052</total-multicast-packets> + <total-octets>45406888</total-octets> + <total-packets>483052</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>136</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>483052</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>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:40</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>119908865</remote-time-mark> + <remote-index>2</remote-index> + <age>7245637</age> + <chassis-id>90:EC:E3:32:26:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610916099</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/x1/1/c4/3, 10-Gig Ethernet</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description/> + <system-name>rt0.bil.es</system-name> + </remote-system> + <statistics> + <transmit> + <frames>241526</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>241525</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c2/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <in-discards>0</in-discards> + <in-errors>374</in-errors> + <in-octets>22703444</in-octets> + <in-packets>241526</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>241526</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>22703444</out-octets> + <out-packets>241526</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>241526</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/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</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>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>241526</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>374</in-errors> + <in-octets>22703444</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>241526</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>22703444</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>139</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>83</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>483052</total-multicast-packets> + <total-octets>45406888</total-octets> + <total-packets>483052</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>152</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>483052</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>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:40</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>119908865</remote-time-mark> + <remote-index>3</remote-index> + <age>7245637</age> + <chassis-id>90:EC:E3:32:26:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610916100</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/x1/1/c4/4, 10-Gig Ethernet</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description/> + <system-name>rt0.bil.es</system-name> + </remote-system> + <statistics> + <transmit> + <frames>241526</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>241525</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c4/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c4/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c5</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c6</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c6/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c6/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c7</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c7/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c8</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c8/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c8/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c9</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c9/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c9/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c10</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c11</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c12</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c13</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c13/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c14/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c14/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c15</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c16</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c16/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c16/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c17</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c18</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c18/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c18/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c19</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c19/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>20983682</in-octets> + <in-packets>82863</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>52035</in-broadcast-packets> + <in-multicast-packets>28846</in-multicast-packets> + <in-unicast-packets>1982</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>3365816</out-octets> + <out-packets>31060</out-packets> + <out-broadcast-packets>18</out-broadcast-packets> + <out-multicast-packets>28142</out-multicast-packets> + <out-unicast-packets>2900</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>8</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> + <ethernet-virtual-connection> + <vlan-id>4090</vlan-id> + <identifier/> + <status>new-and-not-active</status> + <status-time>2024-12-19T07:56:30.7Z</status-time> + <type>point-to-point</type> + </ethernet-virtual-connection> + <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>52035</in-broadcast-packets> + <in-multicast-packets>28846</in-multicast-packets> + <in-unicast-packets>1982</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>20983682</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>18</out-broadcast-packets> + <out-multicast-packets>28142</out-multicast-packets> + <out-unicast-packets>2900</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>3365816</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>52053</total-broadcast-packets> + <total-multicast-packets>56988</total-multicast-packets> + <total-octets>24349498</total-octets> + <total-packets>113923</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>1395</octets-64> + <octets-65-to-127>57846</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>54682</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> + <egress> + <queue-group> + <queue-group-name>policer-output-queues</queue-group-name> + <instance-id>1</instance-id> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>503316480</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + <queue> + <queue-id>2</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>503316480</operational-mbs> + <operational-pir>max</operational-pir> + <burst-limit>auto</burst-limit> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </queue-group> + </egress> + </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:40</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>28139</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>28136</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c20/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c20/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c21</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c22</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c22/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c22/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c23</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c24</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c24/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c24/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c25</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c25/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c26</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:02.0Z</counter-discontinuity-time> + <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/x1/1/c26/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c26/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c27</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:02.0Z</counter-discontinuity-time> + <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/x1/1/c27/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c27/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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>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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c28</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c29</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c30</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c31</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c31/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c32/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c32/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c33</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c34</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c34/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/4</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/5</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/6</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/7</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/8</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/9</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c34/10</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c35</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c36</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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/x1/1/c36/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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/x1/1/c36/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-11T11:45:03.3Z</counter-discontinuity-time> + <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:40</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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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.34</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.8</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::8</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-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>A/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4262262</in-octets> + <in-packets>63727</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>61513</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>2214</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>145616</out-octets> + <out-packets>2152</out-packets> + <out-broadcast-packets>118</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>2034</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>61513</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>2214</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>4262262</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>118</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>2034</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>145616</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>61631</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>4407878</total-octets> + <total-packets>65879</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>19685</octets-64> + <octets-65-to-127>46194</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>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>A/gnss</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>B/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4122291</in-octets> + <in-packets>61640</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>61629</in-broadcast-packets> + <in-multicast-packets>1</in-multicast-packets> + <in-unicast-packets>10</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>230</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-with-crossover</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>61629</in-broadcast-packets> + <in-multicast-packets>1</in-multicast-packets> + <in-unicast-packets>10</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>4122291</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>230</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>61634</total-broadcast-packets> + <total-multicast-packets>1</total-multicast-packets> + <total-octets>4122521</total-octets> + <total-packets>61645</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>17373</octets-64> + <octets-65-to-127>44271</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>1</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> + <port> + <port-id>B/gnss</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> + <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-11-04T14:49:24.0Z</last-oper-change> + <statistics> + <ip> + <out-packets>0</out-packets> + <out-octets>0</out-octets> + <out-discard-packets>301</out-discard-packets> + <out-discard-octets>56616</out-discard-octets> + <in-packets>41</in-packets> + <in-octets>4064</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>41</icmp-in-msgs> + <icmp-in-errors>31</icmp-in-errors> + <icmp-in-dest-unreachables>31</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>5</icmp-in-echos> + <icmp-in-echo-replies>5</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> + <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>301</out-discard-packets> + <out-discard-octets>56616</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.119.8</oper-address> + <creation-origin>manual</creation-origin> + </primary> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <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> + <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:799:1ab::8</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab::8</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + </ipv6> + </interface> + <interface> + <interface-name>guy</interface-name> + <if-index>2</if-index> + <system-if-index>2</system-if-index> + <oper-state>lower-layer-down</oper-state> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-19T07:56:30.7Z</last-oper-change> + <distributed-cpu-protection> + <static-policer> + <name>ICMP_LIMIT</name> + <card>2</card> + <fp-number>2</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <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>773</in-packets> + <in-octets>54076</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> + <eth-cfm> + <mep> + <md-admin-name>ZR</md-admin-name> + <ma-admin-name>Y1564test</ma-admin-name> + <mep-id>2</mep-id> + <if-index>0</if-index> + <oper-mac-address>00:00:00:00:00:02</oper-mac-address> + <grace> + <transmitted> + <grace-notification>no-transmit</grace-notification> + </transmitted> + <received> + <process-grace-notification>false</process-grace-notification> + </received> + </grace> + <ccm-states> + <transmit-status>no-transmit</transmit-status> + <sequence-error>0</sequence-error> + <fng-state>reset</fng-state> + <transmitted> + <count>0</count> + <interface-status>is-no-interface-status-tlv</interface-status> + <port-status>ps-no-port-state-tlv</port-status> + <remote-defect-indicator>false</remote-defect-indicator> + </transmitted> + <received> + <highest-priority-defect>none</highest-priority-defect> + <defect-flags/> + </received> + </ccm-states> + <statistics> + <opcode> + <opcode-name>total</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>other</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>ccm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>lbr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>lbm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>ltr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>ltm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>ais</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>lck</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>tst</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>laps</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>raps</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>mcc</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>lmr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>lmm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>1dm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>dmr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>dmm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>exr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>exm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>csf</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>vsr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>vsm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>1sl</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>slr</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>slm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + <opcode> + <opcode-name>gnm</opcode-name> + <transmitted>0</transmitted> + <received>0</received> + </opcode> + </statistics> + </mep> + </eth-cfm> + <ipv4> + <oper-state>down</oper-state> + <down-reason>port-down</down-reason> + <icmp> + <statistics> + <icmp-in-msgs>7</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>7</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>7</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>7</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>10.211.101.2</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>743</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>743</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> + <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> + </ipv6> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + <if-index>3</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>2025-01-14T09:29:47.1Z</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>33797576</out-packets> + <out-octets>10595443247</out-octets> + <out-discard-packets>4</out-discard-packets> + <out-discard-octets>216</out-discard-octets> + <in-packets>72193910</in-packets> + <in-octets>9287296561</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>27568171</out-packets> + <out-octets>5039657006</out-octets> + <in-packets>307435</in-packets> + <in-octets>32250870</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>395624</icmp-in-msgs> + <icmp-in-errors>9411</icmp-in-errors> + <icmp-in-dest-unreachables>9396</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>386210</icmp-in-echos> + <icmp-in-echo-replies>3</icmp-in-echo-replies> + <icmp-in-time-exceeds>15</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>384665</icmp-out-msgs> + <icmp-out-errors>12</icmp-out-errors> + <icmp-out-dest-unreachables>9</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>49</icmp-out-echos> + <icmp-out-echo-replies>384604</icmp-out-echo-replies> + <icmp-out-time-exceeds>3</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>33108609</out-packets> + <out-octets>10517527408</out-octets> + <out-discard-packets>4</out-discard-packets> + <out-discard-octets>216</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.119.117</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.116</ipv4-address> + <oper-state>up</oper-state> + <mac-address>18:c3:00:91:fe:5f</mac-address> + <type>dynamic</type> + <timer>12859</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>498753</icmp6-in-msgs> + <icmp6-in-errors>76074</icmp6-in-errors> + <icmp6-in-dest-unreachables>76074</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>211350</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>211329</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>423349</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>212000</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>211349</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::92ec:e3ff:fe30:d3eb</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>688967</out-packets> + <out-octets>77915839</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:799:1ab:2::7a</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::7a</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::1ac3:ff:fe91:fe5f</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>18:c3:00:91:fe:5f</mac-address> + <type>dynamic</type> + <timer>23</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-2.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-11T11:42:54.2Z</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>20308810185</out-packets> + <out-octets>19166179646050</out-octets> + <out-discard-packets>10</out-discard-packets> + <out-discard-octets>803</out-discard-octets> + <in-packets>15505039</in-packets> + <in-octets>1271709707</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>11502226821145</out-packets> + <out-octets>17214475932404000</out-octets> + <in-packets>10093403146766</in-packets> + <in-octets>15012189865887762</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>6088</icmp-in-msgs> + <icmp-in-errors>2</icmp-in-errors> + <icmp-in-dest-unreachables>0</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>85</icmp-in-echos> + <icmp-in-echo-replies>6001</icmp-in-echo-replies> + <icmp-in-time-exceeds>2</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>7711</icmp-out-msgs> + <icmp-out-errors>6</icmp-out-errors> + <icmp-out-dest-unreachables>0</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>6001</icmp-out-echos> + <icmp-out-echo-replies>1704</icmp-out-echo-replies> + <icmp-out-time-exceeds>6</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>20306171211</out-packets> + <out-octets>19165877061509</out-octets> + <out-discard-packets>10</out-discard-packets> + <out-discard-octets>803</out-discard-octets> + <in-packets>28557523460</in-packets> + <in-octets>27436877183677</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.119.118</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.119</ipv4-address> + <oper-state>up</oper-state> + <mac-address>9c:e0:41:60:f9:2a</mac-address> + <type>dynamic</type> + <timer>7735</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>390688</icmp6-in-msgs> + <icmp6-in-errors>1532</icmp6-in-errors> + <icmp6-in-dest-unreachables>1532</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>193584</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>195572</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>389167</icmp6-out-msgs> + <icmp6-out-errors>3</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>3</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>195580</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>193584</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::92ec:e3ff:fe30:d3e6</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>2638974</out-packets> + <out-octets>302584541</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:799:1ab:2::7d</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::7d</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::9ee0:41ff:fe60:f92a</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>9c:e0:41:60:f9:2a</mac-address> + <type>dynamic</type> + <timer>5</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-07T08:06:18.2Z</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>46152</in-packets> + <in-octets>2952854</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.34</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> + <service> + <epipe> + <service-name>GEANT_EPIPE_121984</service-name> + <oper-service-id>400</oper-service-id> + <oper-state>up</oper-state> + <sap-count>1</sap-count> + <sdp-bind-count>1</sdp-bind-count> + <template-used/> + <creation-origin>manual</creation-origin> + <spoke-sdp> + <sdp-bind-id>961:121984</sdp-bind-id> + <oper-state>up</oper-state> + <oper-flags/> + <pw-peer-status-bits/> + <pw-local-status-bits/> + <peer-vccv-cv-bits>lsp-ping bfd-fault-detection</peer-vccv-cv-bits> + <peer-vccv-cc-bits>pwe3-control-word mpls-router-alert-label</peer-vccv-cc-bits> + <oper-control-word>true</oper-control-word> + <pw-fault-ip-address>0.0.0.0</pw-fault-ip-address> + <class-forwarding-oper-state>down</class-forwarding-oper-state> + <creation-origin>manual</creation-origin> + <oper-hash-label>false</oper-hash-label> + <min-required-sdp-oper-mtu>9118</min-required-sdp-oper-mtu> + <ingress> + <oper-label>524278</oper-label> + <statistics> + <forwarded-packets>415767</forwarded-packets> + <forwarded-octets>32251486</forwarded-octets> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + </statistics> + </ingress> + <egress> + <oper-label>524263</oper-label> + <statistics> + <forwarded-packets>8587</forwarded-packets> + <forwarded-octets>550030</forwarded-octets> + </statistics> + </egress> + <bfd> + <oper-state>not-configured</oper-state> + <remaining-up-time>0</remaining-up-time> + </bfd> + </spoke-sdp> + <sap> + <sap-id>lag-14:505.cp-400</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>8587</received-valid-packets> + <received-valid-octets>584378</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>8587</low-priority-offered-packets> + <low-priority-offered-octets>584378</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>8587</aggregate-offered-packets> + <aggregate-offered-octets>584378</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>8587</out-profile-forwarded-packets> + <out-profile-forwarded-octets>584378</out-profile-forwarded-octets> + <aggregate-forwarded-packets>8587</aggregate-forwarded-packets> + <aggregate-forwarded-octets>584378</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>8587</low-priority-offered-packets> + <low-priority-offered-octets>584378</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>8587</out-profile-forwarded-packets> + <out-profile-forwarded-octets>584378</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>415767</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>33914554</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>415767</aggregate-forwarded-packets> + <aggregate-forwarded-octets>33914554</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>415767</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>33914554</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-port>2/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <ethernet> + <llf> + <oper-state>clear</oper-state> + </llf> + </ethernet> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_60606</service-name> + <oper-service-id>606</oper-service-id> + <oper-state>up</oper-state> + <sap-count>1</sap-count> + <sdp-bind-count>1</sdp-bind-count> + <template-used/> + <creation-origin>manual</creation-origin> + <spoke-sdp> + <sdp-bind-id>961:60606</sdp-bind-id> + <oper-state>up</oper-state> + <oper-flags/> + <pw-peer-status-bits/> + <pw-local-status-bits/> + <peer-vccv-cv-bits>lsp-ping bfd-fault-detection</peer-vccv-cv-bits> + <peer-vccv-cc-bits>pwe3-control-word mpls-router-alert-label</peer-vccv-cc-bits> + <oper-control-word>true</oper-control-word> + <pw-fault-ip-address>0.0.0.0</pw-fault-ip-address> + <class-forwarding-oper-state>down</class-forwarding-oper-state> + <creation-origin>manual</creation-origin> + <oper-hash-label>false</oper-hash-label> + <min-required-sdp-oper-mtu>9118</min-required-sdp-oper-mtu> + <ingress> + <oper-label>524274</oper-label> + <statistics> + <forwarded-packets>254210</forwarded-packets> + <forwarded-octets>17685286</forwarded-octets> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + </statistics> + </ingress> + <egress> + <oper-label>524264</oper-label> + <statistics> + <forwarded-packets>5285</forwarded-packets> + <forwarded-octets>296170</forwarded-octets> + </statistics> + </egress> + <bfd> + <oper-state>not-configured</oper-state> + <remaining-up-time>0</remaining-up-time> + </bfd> + </spoke-sdp> + <sap> + <sap-id>lag-14:505.1061</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>5285</received-valid-packets> + <received-valid-octets>359590</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>5285</low-priority-offered-packets> + <low-priority-offered-octets>359590</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>5285</aggregate-offered-packets> + <aggregate-offered-octets>359590</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>5285</out-profile-forwarded-packets> + <out-profile-forwarded-octets>359590</out-profile-forwarded-octets> + <aggregate-forwarded-packets>5285</aggregate-forwarded-packets> + <aggregate-forwarded-octets>359590</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>5285</low-priority-offered-packets> + <low-priority-offered-octets>359590</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>5285</out-profile-forwarded-packets> + <out-profile-forwarded-octets>359590</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>251085</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>20510806</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>251085</aggregate-forwarded-packets> + <aggregate-forwarded-octets>20510806</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>251085</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>20510806</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-port>2/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <ethernet> + <llf> + <oper-state>clear</oper-state> + </llf> + </ethernet> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_124004</service-name> + <oper-service-id>4066</oper-service-id> + <oper-state>up</oper-state> + <sap-count>1</sap-count> + <sdp-bind-count>1</sdp-bind-count> + <template-used/> + <creation-origin>manual</creation-origin> + <spoke-sdp> + <sdp-bind-id>921:124004</sdp-bind-id> + <oper-state>up</oper-state> + <oper-flags/> + <pw-peer-status-bits/> + <pw-local-status-bits/> + <peer-vccv-cv-bits>lsp-ping bfd-fault-detection</peer-vccv-cv-bits> + <peer-vccv-cc-bits>pwe3-control-word mpls-router-alert-label mpls-pw-demultiplex-or-label</peer-vccv-cc-bits> + <oper-control-word>true</oper-control-word> + <pw-fault-ip-address>0.0.0.0</pw-fault-ip-address> + <class-forwarding-oper-state>down</class-forwarding-oper-state> + <creation-origin>manual</creation-origin> + <oper-hash-label>false</oper-hash-label> + <min-required-sdp-oper-mtu>9118</min-required-sdp-oper-mtu> + <ingress> + <oper-label>524270</oper-label> + <statistics> + <forwarded-packets>0</forwarded-packets> + <forwarded-octets>0</forwarded-octets> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + </statistics> + </ingress> + <egress> + <oper-label>47330</oper-label> + <statistics> + <forwarded-packets>0</forwarded-packets> + <forwarded-octets>0</forwarded-octets> + </statistics> + </egress> + <bfd> + <oper-state>not-configured</oper-state> + <remaining-up-time>0</remaining-up-time> + </bfd> + </spoke-sdp> + <sap> + <sap-id>lag-16:4066</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <ethernet> + <llf> + <oper-state>clear</oper-state> + </llf> + </ethernet> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_10GGBS_222222</service-name> + <oper-service-id>10001</oper-service-id> + <oper-state>up</oper-state> + <sap-count>1</sap-count> + <sdp-bind-count>1</sdp-bind-count> + <template-used/> + <creation-origin>manual</creation-origin> + <spoke-sdp> + <sdp-bind-id>642:222222</sdp-bind-id> + <oper-state>up</oper-state> + <oper-flags/> + <pw-peer-status-bits/> + <pw-local-status-bits/> + <peer-vccv-cv-bits>lsp-ping bfd-fault-detection</peer-vccv-cv-bits> + <peer-vccv-cc-bits>pwe3-control-word mpls-router-alert-label mpls-pw-demultiplex-or-label</peer-vccv-cc-bits> + <oper-control-word>true</oper-control-word> + <pw-fault-ip-address>0.0.0.0</pw-fault-ip-address> + <class-forwarding-oper-state>down</class-forwarding-oper-state> + <creation-origin>manual</creation-origin> + <oper-hash-label>false</oper-hash-label> + <min-required-sdp-oper-mtu>9118</min-required-sdp-oper-mtu> + <ingress> + <oper-label>524279</oper-label> + <statistics> + <forwarded-packets>994048</forwarded-packets> + <forwarded-octets>82390862</forwarded-octets> + <dropped-packets>2</dropped-packets> + <dropped-octets>156</dropped-octets> + </statistics> + </ingress> + <egress> + <oper-label>28</oper-label> + <statistics> + <forwarded-packets>1073865</forwarded-packets> + <forwarded-octets>98094704</forwarded-octets> + </statistics> + </egress> + <bfd> + <oper-state>not-configured</oper-state> + <remaining-up-time>0</remaining-up-time> + </bfd> + </spoke-sdp> + <sap> + <sap-id>lag-14:505.2222</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>1560</dropped-packets> + <dropped-octets>161554</dropped-octets> + <received-valid-packets>1073675</received-valid-packets> + <received-valid-octets>110966738</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>1073676</low-priority-offered-packets> + <low-priority-offered-octets>110966844</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>1073676</aggregate-offered-packets> + <aggregate-offered-octets>110966844</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>1073676</out-profile-forwarded-packets> + <out-profile-forwarded-octets>110966844</out-profile-forwarded-octets> + <aggregate-forwarded-packets>1073676</aggregate-forwarded-packets> + <aggregate-forwarded-octets>110966844</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>96682</low-priority-offered-packets> + <low-priority-offered-octets>10039664</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>96682</out-profile-forwarded-packets> + <out-profile-forwarded-octets>10039664</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>993969</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>94313308</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>993969</aggregate-forwarded-packets> + <aggregate-forwarded-octets>94313308</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>993969</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>94313308</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-port>2/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <ethernet> + <llf> + <oper-state>clear</oper-state> + </llf> + </ethernet> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_123077</service-name> + <oper-service-id>1999999</oper-service-id> + <oper-state>up</oper-state> + <sap-count>1</sap-count> + <sdp-bind-count>1</sdp-bind-count> + <template-used/> + <creation-origin>manual</creation-origin> + <spoke-sdp> + <sdp-bind-id>951:999999</sdp-bind-id> + <oper-state>up</oper-state> + <oper-flags/> + <pw-peer-status-bits/> + <pw-local-status-bits/> + <peer-vccv-cv-bits>lsp-ping bfd-fault-detection</peer-vccv-cv-bits> + <peer-vccv-cc-bits>pwe3-control-word mpls-router-alert-label mpls-pw-demultiplex-or-label</peer-vccv-cc-bits> + <oper-control-word>true</oper-control-word> + <pw-fault-ip-address>0.0.0.0</pw-fault-ip-address> + <class-forwarding-oper-state>down</class-forwarding-oper-state> + <creation-origin>manual</creation-origin> + <oper-hash-label>false</oper-hash-label> + <min-required-sdp-oper-mtu>9118</min-required-sdp-oper-mtu> + <ingress> + <oper-label>524281</oper-label> + <statistics> + <forwarded-packets>5818095907285</forwarded-packets> + <forwarded-octets>8496491030552916</forwarded-octets> + <dropped-packets>2</dropped-packets> + <dropped-octets>340</dropped-octets> + </statistics> + </ingress> + <egress> + <oper-label>64</oper-label> + <statistics> + <forwarded-packets>6093132276063</forwarded-packets> + <forwarded-octets>9017998630496384</forwarded-octets> + </statistics> + </egress> + <bfd> + <oper-state>not-configured</oper-state> + <remaining-up-time>0</remaining-up-time> + </bfd> + </spoke-sdp> + <sap> + <sap-id>lag-17</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>158892</dropped-packets> + <dropped-octets>10367474</dropped-octets> + <received-valid-packets>6093129775500</received-valid-packets> + <received-valid-octets>9042367452825462</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>6093130586842</low-priority-offered-packets> + <low-priority-offered-octets>9042368658496178</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>6093130586842</aggregate-offered-packets> + <aggregate-offered-octets>9042368658496178</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>6093130586831</out-profile-forwarded-packets> + <out-profile-forwarded-octets>9042368658479480</out-profile-forwarded-octets> + <aggregate-forwarded-packets>6093130586831</aggregate-forwarded-packets> + <aggregate-forwarded-octets>9042368658479480</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>1300692136744</low-priority-offered-packets> + <low-priority-offered-octets>1932080517580076</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>1300692136733</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1932080517563378</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/3</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>45046096</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>65645385449</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>5818050862435</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>8519697770601155</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>5818050862435</aggregate-forwarded-packets> + <aggregate-forwarded-octets>8519697770601155</aggregate-forwarded-octets> + <aggregate-dropped-packets>45046096</aggregate-dropped-packets> + <aggregate-dropped-octets>65645385449</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>0</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>0</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>5818050862435</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>8519697770601155</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>45046096</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>65645385449</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/3</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <ethernet> + <llf> + <oper-state>clear</oper-state> + </llf> + </ethernet> + </sap> + </epipe> + <ies> + <service-name>GEANT_GLOBAL</service-name> + <interface> + <interface-name>lag-16.2000</interface-name> + <if-index>5</if-index> + <system-if-index>257</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <sap> + <sap-id>lag-16:2000</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>1117673</dropped-packets> + <dropped-octets>201148684</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>37340444</cpm-packets> + <cpm-octets>2371291283</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>559093</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>482694595</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>559093</aggregate-forwarded-packets> + <aggregate-forwarded-octets>482694595</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>559093</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>482694595</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <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.100.56</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>172.16.100.48</ipv4-address> + <oper-state>up</oper-state> + <mac-address>44:a8:42:33:d5:a6</mac-address> + <type>dynamic</type> + <timer>3243</timer> + </neighbor> + <neighbor> + <ipv4-address>172.16.100.90</ipv4-address> + <oper-state>up</oper-state> + <mac-address>52:54:00:03:d0:e7</mac-address> + <type>dynamic</type> + <timer>7586</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>557998</out-packets> + <out-octets>482620135</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> + </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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <statistics> + <ip> + <out-packets>557998</out-packets> + <out-octets>482620135</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>37340444</in-packets> + <in-octets>2371291283</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-16.2101</interface-name> + <if-index>6</if-index> + <system-if-index>258</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <sap> + <sap-id>lag-16:2101</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>18</dropped-packets> + <dropped-octets>1960</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>268</cpm-packets> + <cpm-octets>25746</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>21</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>1428</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>21</aggregate-forwarded-packets> + <aggregate-forwarded-octets>1428</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>21</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>1428</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>213</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>213</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>62.40.102.1</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-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> + </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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <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>268</in-packets> + <in-octets>25746</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-16.2102</interface-name> + <if-index>7</if-index> + <system-if-index>259</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <sap> + <sap-id>lag-16:2102</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>0</cpm-packets> + <cpm-octets>0</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>6</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>408</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>6</aggregate-forwarded-packets> + <aggregate-forwarded-octets>408</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>6</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>408</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <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>62.40.115.1</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-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> + </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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <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>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> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-14.100</interface-name> + <if-index>14</if-index> + <system-if-index>267</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-27T15:33:13.5Z</last-oper-change> + <sap> + <sap-id>lag-14:505.100</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>2715</dropped-packets> + <dropped-octets>266050</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1103503</cpm-packets> + <cpm-octets>102073378</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>5437776</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>487100902</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>5437776</aggregate-forwarded-packets> + <aggregate-forwarded-octets>487100902</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-port>2/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>5437776</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>487100902</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>11</icmp-in-msgs> + <icmp-in-errors>9</icmp-in-errors> + <icmp-in-dest-unreachables>9</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>2</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>11</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>9</icmp-out-echos> + <icmp-out-echo-replies>2</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>62.40.124.153</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.124.154</ipv4-address> + <oper-state>up</oper-state> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>13622</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>2631551</out-packets> + <out-octets>208744488</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> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>203435</icmp6-in-msgs> + <icmp6-in-errors>5</icmp6-in-errors> + <icmp6-in-dest-unreachables>5</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>23787</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>179643</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>203450</icmp6-out-msgs> + <icmp6-out-errors>5</icmp6-out-errors> + <icmp6-out-dest-unreachables>5</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>5</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>179653</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>23787</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::92ec:e3ff:fe30:d2a4</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:99:1::35</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:99:1::35</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:99:1::36</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>3</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::bac2:5301:f9de:e0c9</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>13732</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>2801707</out-packets> + <out-octets>278031136</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> + </ipv6> + <statistics> + <ip> + <out-packets>5433258</out-packets> + <out-octets>486775624</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1103503</in-packets> + <in-octets>102073378</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </ies> + <vprn> + <service-name>ZR-MGMT</service-name> + <interface> + <interface-name>dhcpIf</interface-name> + <if-index>12</if-index> + <system-if-index>266</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-19T12:06:03.7Z</last-oper-change> + <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>10.2.2.2</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-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> + </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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <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>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> + </ip> + </statistics> + </interface> + <interface> + <interface-name>toModule</interface-name> + <if-index>13</if-index> + <system-if-index>265</system-if-index> + <oper-state>lower-layer-down</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9174</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-19T07:56:30.7Z</last-oper-change> + <ipv4> + <oper-state>down</oper-state> + <down-reason>associated-object-not-ready</down-reason> + <icmp> + <statistics> + <icmp-in-msgs>22</icmp-in-msgs> + <icmp-in-errors>9</icmp-in-errors> + <icmp-in-dest-unreachables>9</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>0</icmp-in-echos> + <icmp-in-echo-replies>13</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>21</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>21</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>10.100.75.1</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <statistics> + <total-rx-packets> + <received>107750</received> + <malformed>0</malformed> + <untrusted>0</untrusted> + </total-rx-packets> + <total-tx-packets> + <transmitted>58928</transmitted> + </total-tx-packets> + <client-packets> + <dropped>0</dropped> + <relayed>107750</relayed> + <snooped>0</snooped> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-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> + </ipv4> + <sap> + <sap-id>2/x1/1/c19/1:4090</sap-id> + <oper-state>down</oper-state> + <oper-flags>port-oper-down</oper-flags> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>52731</cpm-packets> + <cpm-octets>17719874</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c19/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>503316480</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c19/1</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>503316480</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c19/1</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>503316480</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>2912</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>776452</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2912</aggregate-forwarded-packets> + <aggregate-forwarded-octets>776452</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>2</source-fp> + <source-port>2/x1/1/c19/1</source-port> + <adapted-admin-mbs>503316480</adapted-admin-mbs> + <exceed-droptail>398458880</exceed-droptail> + <high-droptail>503316480</high-droptail> + <high-plus-droptail>503316480</high-plus-droptail> + <low-droptail>450887680</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>503316480</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>2912</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>776452</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + </sap> + <ipv6> + <oper-state>down</oper-state> + <down-reason>associated-object-not-ready</down-reason> + <icmp6> + <statistics> + <icmp6-in-msgs>1499</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>13</icmp6-in-echo-replies> + <icmp6-in-rtr-solicits>1465</icmp6-in-rtr-solicits> + <icmp6-in-rtr-advertisements>0</icmp6-in-rtr-advertisements> + <icmp6-in-nbr-solicits>11</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>10</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>41</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>13</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>17</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>11</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::e2cb:19ff:fe76:bf84</oper-address> + <address-state>inaccessible</address-state> + </link-local-address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <statistics> + <out-packets>3</out-packets> + <out-octets>258</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> + </ipv6> + <statistics> + <ip> + <out-packets>3</out-packets> + <out-octets>258</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>153214</in-packets> + <in-octets>17719874</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + <vprn> + <service-name>LHCONE_L3VPN</service-name> + <interface> + <interface-name>lag-16.2121</interface-name> + <if-index>11</if-index> + <system-if-index>263</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-25T14:11:20.4Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>2</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>2</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>2</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>2</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>62.40.102.33</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.102.32</ipv4-address> + <oper-state>up</oper-state> + <mac-address>6a:32:19:75:c0:ff</mac-address> + <type>dynamic</type> + <timer>14396</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>442439</out-packets> + <out-octets>36952086</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> + </ipv4> + <sap> + <sap-id>lag-16:2121</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>15</dropped-packets> + <dropped-octets>1690</dropped-octets> + <received-valid-packets>114</received-valid-packets> + <received-valid-octets>12452</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>114</low-priority-offered-packets> + <low-priority-offered-octets>12452</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>114</aggregate-offered-packets> + <aggregate-offered-octets>12452</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1266748</cpm-packets> + <cpm-octets>109756001</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>114</out-profile-forwarded-packets> + <out-profile-forwarded-octets>12452</out-profile-forwarded-octets> + <aggregate-forwarded-packets>114</aggregate-forwarded-packets> + <aggregate-forwarded-octets>12452</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>114</low-priority-offered-packets> + <low-priority-offered-octets>12452</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>114</out-profile-forwarded-packets> + <out-profile-forwarded-octets>12452</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>1267599</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>116673481</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>131</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>13538</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>1267730</aggregate-forwarded-packets> + <aggregate-forwarded-octets>116687019</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1267599</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>116673481</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>131</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>13538</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>304160</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>2</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>121189</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>182969</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>304174</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>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>182983</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>121189</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::92ec:e3ff:fe30:d3f4</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:111:1::d</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:111:1::d</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:111:1::e</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>6a:32:19:75:c0:ff</mac-address> + <type>dynamic</type> + <timer>10</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::6832:19ff:fe75:c0ff</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>6a:32:19:75:c0:ff</mac-address> + <type>dynamic</type> + <timer>14380</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>746444</out-packets> + <out-octets>74373337</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> + </ipv6> + <statistics> + <ip> + <out-packets>1188883</out-packets> + <out-octets>111325423</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1266862</in-packets> + <in-octets>109768453</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + <vprn> + <service-name>SNM_SWITCH_MGMT</service-name> + <interface> + <interface-name>LAG-1.998</interface-name> + <if-index>17</if-index> + <system-if-index>270</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9174</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2025-01-24T15:19:06.6Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>5</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>1</icmp-in-echos> + <icmp-in-echo-replies>4</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>3</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>3</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.21.51.1</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>172.21.51.10</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:92:92:47</mac-address> + <type>dynamic</type> + <timer>13973</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>3</out-packets> + <out-octets>318</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> + </ipv4> + <sap> + <sap-id>lag-1:998</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>54420</cpm-packets> + <cpm-octets>4088922</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>2394</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>162906</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2394</aggregate-forwarded-packets> + <aggregate-forwarded-octets>162906</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>2394</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>162906</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <statistics> + <ip> + <out-packets>3</out-packets> + <out-octets>318</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>54420</in-packets> + <in-octets>4088922</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + <vprn> + <service-name>IAS</service-name> + <interface> + <interface-name>lag-16.2111</interface-name> + <if-index>8</if-index> + <system-if-index>260</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>1787</icmp-in-msgs> + <icmp-in-errors>1777</icmp-in-errors> + <icmp-in-dest-unreachables>1777</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>4</icmp-in-echos> + <icmp-in-echo-replies>6</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>7</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>7</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>62.40.102.1</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.102.2</ipv4-address> + <oper-state>up</oper-state> + <mac-address>f2:9d:4c:9d:b0:f2</mac-address> + <type>dynamic</type> + <timer>12786</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>518721</out-packets> + <out-octets>44019589</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> + </ipv4> + <sap> + <sap-id>lag-16:2111</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>EDGE_PROTECT</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>0</dropped-packets> + <dropped-octets>0</dropped-octets> + <received-valid-packets>12</received-valid-packets> + <received-valid-octets>1296</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>12</low-priority-offered-packets> + <low-priority-offered-octets>1296</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>12</aggregate-offered-packets> + <aggregate-offered-octets>1296</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.3Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1610041</cpm-packets> + <cpm-octets>141065415</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>12</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1296</out-profile-forwarded-octets> + <aggregate-forwarded-packets>12</aggregate-forwarded-packets> + <aggregate-forwarded-octets>1296</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.3Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>12</low-priority-offered-packets> + <low-priority-offered-octets>1296</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>12</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1296</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>1503319</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>139234426</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>19</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>1702</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>1503338</aggregate-forwarded-packets> + <aggregate-forwarded-octets>139236128</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.3Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1503319</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>139234426</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>19</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>1702</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <distributed-cpu-protection> + <local-monitor-policer> + <name>DYNAMIC_PROTECT</name> + <card>1</card> + <fp-number>1</fp-number> + <state>conform</state> + <exceed-count>0</exceed-count> + <all-dynamic-policer-allocation>false</all-dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </local-monitor-policer> + <dynamic-policer> + <protocol>arp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>igmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mld</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>all-unspecified</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mpls-ttl</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bfd-cpm</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bgp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>pim</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>rsvp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp-ping-check</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>vrrp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + </distributed-cpu-protection> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>399176</icmp6-in-msgs> + <icmp6-in-errors>972</icmp6-in-errors> + <icmp6-in-dest-unreachables>972</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>163909</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>234282</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>402116</icmp6-out-msgs> + <icmp6-out-errors>972</icmp6-out-errors> + <icmp6-out-dest-unreachables>972</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>237235</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>163909</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::e6:8e3d:bbdc:bccb</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:799:1ab:14::1</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:14::1</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:799:1ab:14::2</ipv6-address> + <state>reachable</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>f2:9d:4c:9d:b0:f2</mac-address> + <type>dynamic</type> + <timer>1</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::f09d:4cff:fe9d:b0f2</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>f2:9d:4c:9d:b0:f2</mac-address> + <type>dynamic</type> + <timer>14352</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>890021</out-packets> + <out-octets>88784011</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> + </ipv6> + <statistics> + <ip> + <out-packets>1408742</out-packets> + <out-octets>132803600</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1610053</in-packets> + <in-octets>141066711</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-16.2113</interface-name> + <if-index>9</if-index> + <system-if-index>261</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <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>192.168.111.0</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>192.168.111.1</ipv4-address> + <oper-state>up</oper-state> + <mac-address>16:09:6f:21:69:f5</mac-address> + <type>dynamic</type> + <timer>14372</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>1769003625571</out-packets> + <out-octets>2652353500885914</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> + </ipv4> + <sap> + <sap-id>lag-16:2113</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>EDGE_PROTECT</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>13551</dropped-packets> + <dropped-octets>5163631</dropped-octets> + <received-valid-packets>848434942640</received-valid-packets> + <received-valid-octets>1199644966167613</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>848434942706</low-priority-offered-packets> + <low-priority-offered-octets>1199644966185062</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>848434942706</aggregate-offered-packets> + <aggregate-offered-octets>1199644966185062</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>57305</cpm-packets> + <cpm-octets>3438300</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>848434942706</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1199644966185062</out-profile-forwarded-octets> + <aggregate-forwarded-packets>848434942706</aggregate-forwarded-packets> + <aggregate-forwarded-octets>1199644966185062</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>848434942706</low-priority-offered-packets> + <low-priority-offered-octets>1199644966185062</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>848434942706</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1199644966185062</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>8522956</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>12923908240</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>57032</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>3878176</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>1768995102615</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>2652340576977674</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>1768995159647</aggregate-forwarded-packets> + <aggregate-forwarded-octets>2652340580855850</aggregate-forwarded-octets> + <aggregate-dropped-packets>8522956</aggregate-dropped-packets> + <aggregate-dropped-octets>12923908240</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>57032</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>3878176</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>1768995102615</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>2652340576977674</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>8522956</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>12923908240</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <distributed-cpu-protection> + <local-monitor-policer> + <name>DYNAMIC_PROTECT</name> + <card>1</card> + <fp-number>1</fp-number> + <state>conform</state> + <exceed-count>0</exceed-count> + <all-dynamic-policer-allocation>false</all-dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </local-monitor-policer> + <dynamic-policer> + <protocol>arp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>igmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mld</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>all-unspecified</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mpls-ttl</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bfd-cpm</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bgp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>pim</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>rsvp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp-ping-check</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>vrrp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + </distributed-cpu-protection> + </sap> + <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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <statistics> + <ip> + <out-packets>1769003625571</out-packets> + <out-octets>2652353500885914</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>848435000011</in-packets> + <in-octets>1199644969623362</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-16.2114</interface-name> + <if-index>10</if-index> + <system-if-index>262</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-11T11:43:04.9Z</last-oper-change> + <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>192.168.111.2</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>192.168.111.3</ipv4-address> + <oper-state>up</oper-state> + <mac-address>6e:eb:ba:d6:7d:4e</mac-address> + <type>dynamic</type> + <timer>9769</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>5994719836782</out-packets> + <out-octets>8855091410128769</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> + </ipv4> + <sap> + <sap-id>lag-16:2114</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>EDGE_PROTECT</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>16465</dropped-packets> + <dropped-octets>12327228</dropped-octets> + <received-valid-packets>7215453977794</received-valid-packets> + <received-valid-octets>10656671153571033</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>7215457514555</low-priority-offered-packets> + <low-priority-offered-octets>10656676346148939</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>7215457514555</aggregate-offered-packets> + <aggregate-offered-octets>10656676346148939</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1104</cpm-packets> + <cpm-octets>66240</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>7215457509057</out-profile-forwarded-packets> + <out-profile-forwarded-octets>10656676337970671</out-profile-forwarded-octets> + <aggregate-forwarded-packets>7215457509057</aggregate-forwarded-packets> + <aggregate-forwarded-octets>10656676337970671</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>7215457514555</low-priority-offered-packets> + <low-priority-offered-octets>10656676346148939</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>7215457509057</out-profile-forwarded-packets> + <out-profile-forwarded-octets>10656676337970671</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>2776302</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>4175061374</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>822</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>55896</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>5994717097045</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>8855087287077605</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>5994717097867</aggregate-forwarded-packets> + <aggregate-forwarded-octets>8855087287133501</aggregate-forwarded-octets> + <aggregate-dropped-packets>2776302</aggregate-dropped-packets> + <aggregate-dropped-octets>4175061374</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>822</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>55896</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>5994717097045</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>8855087287077605</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>2776302</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>4175061374</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + <distributed-cpu-protection> + <local-monitor-policer> + <name>DYNAMIC_PROTECT</name> + <card>1</card> + <fp-number>1</fp-number> + <state>conform</state> + <exceed-count>0</exceed-count> + <all-dynamic-policer-allocation>false</all-dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </local-monitor-policer> + <dynamic-policer> + <protocol>arp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>igmp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mld</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>all-unspecified</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>mpls-ttl</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bfd-cpm</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>bgp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>pim</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>rsvp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>icmp-ping-check</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + <dynamic-policer> + <protocol>vrrp</protocol> + <card>1</card> + <fp-number>1</fp-number> + <exceed-count>0</exceed-count> + <hold-down-remain>none</hold-down-remain> + <detection-time-remain>0</detection-time-remain> + <dynamic-policer-allocation>false</dynamic-policer-allocation> + <total-exceed-count>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </dynamic-policer> + </distributed-cpu-protection> + </sap> + <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> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <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> + </ipv6> + <statistics> + <ip> + <out-packets>5994719836782</out-packets> + <out-octets>8855091410128769</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>7215457525912</in-packets> + <in-octets>10656676361201949</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + <interface> + <interface-name>lag-14.333</interface-name> + <if-index>15</if-index> + <system-if-index>268</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-28T10:00:47.0Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>6</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>2</icmp-in-echos> + <icmp-in-echo-replies>4</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>7</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>7</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>83.97.88.198</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>83.97.88.199</ipv4-address> + <oper-state>up</oper-state> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>14121</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>2630662</out-packets> + <out-octets>208647099</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> + </ipv4> + <sap> + <sap-id>lag-14:505.333</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>27</dropped-packets> + <dropped-octets>2530</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1062583</cpm-packets> + <cpm-octets>98561663</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>2/x1/1/c2/1</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>3154870</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>263348666</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>3154870</aggregate-forwarded-packets> + <aggregate-forwarded-octets>263348666</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>2</source-card> + <source-fp>1</source-fp> + <source-port>2/x1/1/c2/1</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>3154870</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>263348666</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>0</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>0</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>164817</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>23226</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>141591</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>164819</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>141593</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>23226</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::92ec:e3ff:fe30:d3f4</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:1::1a5</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:1::1a5</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:1::1a6</ipv6-address> + <state>stale</state> + <is-router>true</is-router> + <mtu>1500</mtu> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>14378</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::bac2:5301:f9de:e0c9</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>b8:c2:53:de:e0:c9</mac-address> + <type>dynamic</type> + <timer>13376</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>519693</out-packets> + <out-octets>54376487</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> + </ipv6> + <statistics> + <ip> + <out-packets>3150355</out-packets> + <out-octets>263023586</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1062583</in-packets> + <in-octets>98561663</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + <vprn> + <service-name>COPERNICUS</service-name> + <interface> + <interface-name>lag-16.2168</interface-name> + <if-index>16</if-index> + <system-if-index>269</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-10T15:53:28.6Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>26</icmp-in-msgs> + <icmp-in-errors>24</icmp-in-errors> + <icmp-in-dest-unreachables>24</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>2</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>2</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>2</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>62.40.127.172</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.127.173</ipv4-address> + <oper-state>up</oper-state> + <mac-address>92:e3:99:52:d5:91</mac-address> + <type>dynamic</type> + <timer>14135</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>2385399</out-packets> + <out-octets>179896183</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> + </ipv4> + <sap> + <sap-id>lag-16:2168</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>7</dropped-packets> + <dropped-octets>518</dropped-octets> + <received-valid-packets>0</received-valid-packets> + <received-valid-octets>0</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>0</aggregate-offered-packets> + <aggregate-offered-octets>0</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1140608</cpm-packets> + <cpm-octets>100292480</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + <aggregate-forwarded-packets>0</aggregate-forwarded-packets> + <aggregate-forwarded-octets>0</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/2</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/x1/1/c2/4</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>12615680</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>0</low-priority-offered-packets> + <low-priority-offered-octets>0</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>3291005</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>264431262</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>212</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>3291007</aggregate-forwarded-packets> + <aggregate-forwarded-octets>264431474</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:48:50.4Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/2</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/x1/1/c2/4</source-port> + <adapted-admin-mbs>12615680</adapted-admin-mbs> + <exceed-droptail>10076160</exceed-droptail> + <high-droptail>12615680</high-droptail> + <high-plus-droptail>12615680</high-plus-droptail> + <low-droptail>11304960</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>12615680</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>3291005</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>264431262</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>212</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>446634</icmp6-in-msgs> + <icmp6-in-errors>170878</icmp6-in-errors> + <icmp6-in-dest-unreachables>170878</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>174010</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>101725</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>938118</icmp6-out-msgs> + <icmp6-out-errors>170878</icmp6-out-errors> + <icmp6-out-dest-unreachables>170878</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>593230</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>174010</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::88:cff2:f56:644e</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:0:1::15</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:0:1::15</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:0:1::16</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>92:e3:99:52:d5:91</mac-address> + <type>dynamic</type> + <timer>10</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::90e3:99ff:fe52:d591</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>92:e3:99:52:d5:91</mac-address> + <type>dynamic</type> + <timer>14175</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>851893</out-packets> + <out-octets>80882671</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> + </ipv6> + <statistics> + <ip> + <out-packets>3237292</out-packets> + <out-octets>260778854</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1140608</in-packets> + <in-octets>100292480</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + </service> + </state> + </data> +</rpc-reply> \ No newline at end of file diff --git a/test/interface_stats/data/rt0.lon2.uk.geant.net-iess.xml b/test/interface_stats/data/rt0.lon2.uk.geant.net-iess.xml deleted file mode 100644 index ec46f92c4dda11bbb2138ab68cb2b322f5b0f69b..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.lon2.uk.geant.net-iess.xml +++ /dev/null @@ -1,943 +0,0 @@ -<rpc-reply message-id="urn:uuid:bf272303-5aaf-4855-9605-62a45e314ed1"> - <data> - <state> - <service> - <ies> - <service-name>GEANT_GLOBAL</service-name> - <interface> - <interface-name>lag-20.1</interface-name> - <if-index>6</if-index> - <system-if-index>257</system-if-index> - <oper-state>up</oper-state> - <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> - <protocol>pim</protocol> - <oper-ip-mtu>9000</oper-ip-mtu> - <creation-origin>manual</creation-origin> - <last-oper-change>2025-01-28T17:08:21.2Z</last-oper-change> - <sap> - <sap-id>lag-20:1</sap-id> - <oper-state>up</oper-state> - <oper-flags/> - <mirror-state>disabled</mirror-state> - <template-used/> - <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> - <statistics> - <authentication> - <discarded-packets>0</discarded-packets> - <success-packets>0</success-packets> - </authentication> - </statistics> - <ingress> - <qos> - <sap-ingress> - <forwarding-engine> - <statistics> - <dropped-packets>903696</dropped-packets> - <dropped-octets>473099801</dropped-octets> - <received-valid-packets>469048758009</received-valid-packets> - <received-valid-octets>630472915751345</received-valid-octets> - <high-priority-offered-packets>0</high-priority-offered-packets> - <high-priority-offered-octets>0</high-priority-offered-octets> - <low-priority-offered-packets>469105731535</low-priority-offered-packets> - <low-priority-offered-octets>630562080489143</low-priority-offered-octets> - <uncolor-offered-packets>0</uncolor-offered-packets> - <uncolor-offered-octets>0</uncolor-offered-octets> - <managed-offered-packets>0</managed-offered-packets> - <managed-offered-octets>0</managed-offered-octets> - <aggregate-offered-packets>469105731535</aggregate-offered-packets> - <aggregate-offered-octets>630562080489143</aggregate-offered-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </forwarding-engine> - <traffic-manager> - <statistics> - <cpm-packets>333540</cpm-packets> - <cpm-octets>31507077</cpm-octets> - <high-priority-dropped-packets>0</high-priority-dropped-packets> - <high-priority-dropped-octets>0</high-priority-dropped-octets> - <low-priority-dropped-packets>0</low-priority-dropped-packets> - <low-priority-dropped-octets>0</low-priority-dropped-octets> - <in-profile-forwarded-packets>0</in-profile-forwarded-packets> - <in-profile-forwarded-octets>0</in-profile-forwarded-octets> - <out-profile-forwarded-packets>469105731475</out-profile-forwarded-packets> - <out-profile-forwarded-octets>630562080398473</out-profile-forwarded-octets> - <aggregate-forwarded-packets>469105731475</aggregate-forwarded-packets> - <aggregate-forwarded-octets>630562080398473</aggregate-forwarded-octets> - <aggregate-dropped-packets>0</aggregate-dropped-packets> - <aggregate-dropped-octets>0</aggregate-dropped-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </traffic-manager> - <queue> - <queue-id>1</queue-id> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <statistics> - <unicast-priority> - <high-priority-offered-packets>0</high-priority-offered-packets> - <high-priority-offered-octets>0</high-priority-offered-octets> - <low-priority-offered-packets>469105731535</low-priority-offered-packets> - <low-priority-offered-octets>630562080489143</low-priority-offered-octets> - <high-priority-dropped-packets>0</high-priority-dropped-packets> - <high-priority-dropped-octets>0</high-priority-dropped-octets> - <low-priority-dropped-packets>0</low-priority-dropped-packets> - <low-priority-dropped-octets>0</low-priority-dropped-octets> - <in-profile-forwarded-packets>0</in-profile-forwarded-packets> - <in-profile-forwarded-octets>0</in-profile-forwarded-octets> - <out-profile-forwarded-packets>469105731475</out-profile-forwarded-packets> - <out-profile-forwarded-octets>630562080398473</out-profile-forwarded-octets> - </unicast-priority> - </statistics> - </queue> - <queue> - <queue-id>11</queue-id> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>0</dest-card> - <dest-fp>0</dest-fp> - <dest-tap-offset>0</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>0</dest-card> - <dest-fp>0</dest-fp> - <dest-tap-offset>0</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>0</dest-card> - <dest-fp>0</dest-fp> - <dest-tap-offset>0</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>0</dest-card> - <dest-fp>0</dest-fp> - <dest-tap-offset>0</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <statistics> - <multipoint-priority> - <combined-offered-packets>0</combined-offered-packets> - <combined-offered-octets>0</combined-offered-octets> - <managed-offered-packets>0</managed-offered-packets> - <managed-offered-octets>0</managed-offered-octets> - <high-priority-dropped-packets>0</high-priority-dropped-packets> - <high-priority-dropped-octets>0</high-priority-dropped-octets> - <low-priority-dropped-packets>0</low-priority-dropped-packets> - <low-priority-dropped-octets>0</low-priority-dropped-octets> - <in-profile-forwarded-packets>0</in-profile-forwarded-packets> - <in-profile-forwarded-octets>0</in-profile-forwarded-octets> - <out-profile-forwarded-packets>0</out-profile-forwarded-packets> - <out-profile-forwarded-octets>0</out-profile-forwarded-octets> - </multipoint-priority> - </statistics> - </queue> - </sap-ingress> - </qos> - </ingress> - <egress> - <qos> - <sap-egress> - <traffic-manager> - <statistics> - <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> - <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> - <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> - <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> - <in-inplus-profile-forwarded-packets>433611795</in-inplus-profile-forwarded-packets> - <in-inplus-profile-forwarded-octets>505480133398</in-inplus-profile-forwarded-octets> - <out-exceed-profile-forwarded-packets>541157891493</out-exceed-profile-forwarded-packets> - <out-exceed-profile-forwarded-octets>703377627057559</out-exceed-profile-forwarded-octets> - <aggregate-forwarded-packets>541591503288</aggregate-forwarded-packets> - <aggregate-forwarded-octets>703883107190957</aggregate-forwarded-octets> - <aggregate-dropped-packets>0</aggregate-dropped-packets> - <aggregate-dropped-octets>0</aggregate-dropped-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </traffic-manager> - <queue> - <queue-id>1</queue-id> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c11/1</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c11/2</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c12/1</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c12/2</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <statistics> - <profile> - <in-inplus-profile-forwarded-packets>433611795</in-inplus-profile-forwarded-packets> - <in-inplus-profile-forwarded-octets>505480133398</in-inplus-profile-forwarded-octets> - <out-exceed-profile-forwarded-packets>541157891493</out-exceed-profile-forwarded-packets> - <out-exceed-profile-forwarded-octets>703377627057559</out-exceed-profile-forwarded-octets> - <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> - <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> - <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> - <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> - </profile> - </statistics> - </queue> - </sap-egress> - </qos> - </egress> - <lag> - <active-port/> - <per-link-hash-oper> - <class>1</class> - <weight>1</weight> - <is-overriden>false</is-overriden> - </per-link-hash-oper> - </lag> - </sap> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>83021</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>82012</icmp-in-echos> - <icmp-in-echo-replies>1009</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>404958</icmp-out-msgs> - <icmp-out-errors>352838</icmp-out-errors> - <icmp-out-dest-unreachables>237004</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>1080</icmp-out-echos> - <icmp-out-echo-replies>51040</icmp-out-echo-replies> - <icmp-out-time-exceeds>115834</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>4302</icmp-out-discards> - </statistics> - </icmp> - <primary> - <oper-address>62.40.125.57</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.125.58</ipv4-address> - <oper-state>up</oper-state> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>14052</timer> - </neighbor> - </neighbor-discovery> - <dhcp> - <lease-populate> - <current-lease-states>0</current-lease-states> - </lease-populate> - <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> - <proxied> - <radius>0</radius> - <lease-split>0</lease-split> - </proxied> - </client-packets> - <server-packets> - <dropped>0</dropped> - <relayed>0</relayed> - <snooped>0</snooped> - </server-packets> - <spoofed-packets> - <release>0</release> - <force-renews>0</force-renews> - </spoofed-packets> - </statistics> - </dhcp> - <statistics> - <out-packets>318857450316</out-packets> - <out-octets>410307323111832</out-octets> - <out-discard-packets>4302</out-discard-packets> - <out-discard-octets>531684</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> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>15577</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>7554</icmp6-in-echos> - <icmp6-in-echo-replies>1005</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>751</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>4821</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>509990</icmp6-out-msgs> - <icmp6-out-errors>498755</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>99579</icmp6-out-time-exceeds> - <icmp6-out-parm-problems>0</icmp6-out-parm-problems> - <icmp6-out-pkt-too-bigs>399176</icmp6-out-pkt-too-bigs> - <icmp6-out-echos>1005</icmp6-out-echos> - <icmp6-out-echo-replies>4656</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>4823</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>751</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>77237</icmp6-out-discards> - </statistics> - </icmp6> - <link-local-address> - <oper-address>fe80::82b9:46ff:fef2:2130</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <address> - <ipv6-address>2001:798:99:1::7d</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:99:1::7d</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <dhcp6> - <relay> - <oper-state>down</oper-state> - <current-lease-states>0</current-lease-states> - <server-lease-states>0</server-lease-states> - </relay> - <server> - <current-server-lease-states>0</current-server-lease-states> - </server> - </dhcp6> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:99:1::7e</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>14</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::564b:8c00:18a:8411</ipv6-address> - <state>reachable</state> - <is-router>false</is-router> - <mtu>9000</mtu> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>17</timer> - </neighbor> - </neighbor-discovery> - <statistics> - <out-packets>222705274197</out-packets> - <out-octets>293540910633566</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> - </ipv6> - <statistics> - <ip> - <out-packets>541562724513</out-packets> - <out-octets>703848233745398</out-octets> - <out-discard-packets>4302</out-discard-packets> - <out-discard-octets>531684</out-discard-octets> - <in-packets>469106298210</in-packets> - <in-octets>630562451570417</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - </statistics> - </interface> - </ies> - </service> - </state> - </data> -</rpc-reply> \ No newline at end of file diff --git a/test/interface_stats/data/rt0.lon2.uk.geant.net-lags.xml b/test/interface_stats/data/rt0.lon2.uk.geant.net-lags.xml deleted file mode 100644 index 6f2d6e6503839fa5bf3617bfac45b29d951547dd..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.lon2.uk.geant.net-lags.xml +++ /dev/null @@ -1,106 +0,0 @@ -<rpc-reply message-id="urn:uuid:2935f355-12f1-4f6e-be50-a8af80a85b56"> - <data> - <state> - <lag> - <lag-name>lag-1</lag-name> - <statistics> - <in-discards>0</in-discards> - <in-errors>0</in-errors> - <in-octets>7042509287313750</in-octets> - <in-packets>6157411236119</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>12270</in-broadcast-packets> - <in-multicast-packets>39308659</in-multicast-packets> - <in-unicast-packets>6157371915190</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>1576140198971813</out-octets> - <out-packets>1543683083436</out-packets> - <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>699547885333</out-multicast-packets> - <out-unicast-packets>844135198101</out-unicast-packets> - </statistics> - </lag> - <lag> - <lag-name>lag-2</lag-name> - <statistics> - <in-discards>0</in-discards> - <in-errors>0</in-errors> - <in-octets>101470341580567412</in-octets> - <in-packets>88513044099505</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>25</in-broadcast-packets> - <in-multicast-packets>694137898513</in-multicast-packets> - <in-unicast-packets>87818906200967</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>142474845240407066</out-octets> - <out-packets>117098722289777</out-packets> - <out-broadcast-packets>23</out-broadcast-packets> - <out-multicast-packets>5313147937</out-multicast-packets> - <out-unicast-packets>117093409141817</out-unicast-packets> - </statistics> - </lag> - <lag> - <lag-name>lag-6</lag-name> - <statistics> - <in-discards>0</in-discards> - <in-errors>0</in-errors> - <in-octets>6423646852419</in-octets> - <in-packets>13660671508</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>12063</in-broadcast-packets> - <in-multicast-packets>26049869</in-multicast-packets> - <in-unicast-packets>13634609576</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>6274324176097</out-octets> - <out-packets>8912095826</out-packets> - <out-broadcast-packets>18</out-broadcast-packets> - <out-multicast-packets>425599482</out-multicast-packets> - <out-unicast-packets>8486496326</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>135749578475428783</in-octets> - <in-packets>111440421950261</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>1948</in-broadcast-packets> - <in-multicast-packets>5655956881</in-multicast-packets> - <in-unicast-packets>111434765991432</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>100156798369534683</out-octets> - <out-packets>87423258426489</out-packets> - <out-broadcast-packets>17</out-broadcast-packets> - <out-multicast-packets>4518727838</out-multicast-packets> - <out-unicast-packets>87418739698634</out-unicast-packets> - </statistics> - </lag> - <lag> - <lag-name>lag-20</lag-name> - <statistics> - <in-discards>0</in-discards> - <in-errors>0</in-errors> - <in-octets>943752960745764</in-octets> - <in-packets>679924124459</in-packets> - <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>532</in-broadcast-packets> - <in-multicast-packets>743891</in-multicast-packets> - <in-unicast-packets>679923380036</in-unicast-packets> - <out-discards>0</out-discards> - <out-errors>0</out-errors> - <out-octets>996898953930184</out-octets> - <out-packets>740169301374</out-packets> - <out-broadcast-packets>15</out-broadcast-packets> - <out-multicast-packets>361317302</out-multicast-packets> - <out-unicast-packets>739807984057</out-unicast-packets> - </statistics> - </lag> - </state> - </data> -</rpc-reply> \ No newline at end of file diff --git a/test/interface_stats/data/rt0.lon2.uk.geant.net-router-interfaces.xml b/test/interface_stats/data/rt0.lon2.uk.geant.net-router-interfaces.xml deleted file mode 100644 index 56b05934ece5955a901ab07f488c6bd5cc7255e5..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.lon2.uk.geant.net-router-interfaces.xml +++ /dev/null @@ -1,1115 +0,0 @@ -<rpc-reply message-id="urn:uuid:030999e1-c9a3-44a0-9220-e66c342d216d"> - <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-24T08:35:14.1Z</last-oper-change> - <statistics> - <ip> - <out-packets>0</out-packets> - <out-octets>0</out-octets> - <out-discard-packets>46029275</out-discard-packets> - <out-discard-octets>3842637155</out-discard-octets> - <in-packets>6</in-packets> - <in-octets>556</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>6</icmp-in-msgs> - <icmp-in-errors>6</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>6</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>17</icmp-out-msgs> - <icmp-out-errors>17</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>17</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>46029275</out-discard-packets> - <out-discard-octets>3842637155</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.25</oper-address> - <creation-origin>manual</creation-origin> - </primary> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>625</icmp6-in-msgs> - <icmp6-in-errors>625</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>625</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>625</icmp6-out-msgs> - <icmp6-out-errors>625</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>625</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> - <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::b</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:aa:1::b</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - </ipv6> - </interface> - <interface> - <interface-name>lag-1.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-08-13T09:22:48.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>0</total-exceed-count> - <exit-conform-state-count>0</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>0</total-exceed-count> - <exit-conform-state-count>0</exit-conform-state-count> - </static-policer> - </distributed-cpu-protection> - <statistics> - <ip> - <out-packets>1030270970601</out-packets> - <out-octets>1113271043929105</out-octets> - <out-discard-packets>3308339</out-discard-packets> - <out-discard-octets>282741878</out-discard-octets> - <in-packets>147356659</in-packets> - <in-octets>17263334401</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>513376552906</out-packets> - <out-octets>462861950845092</out-octets> - <in-packets>4906890319215</in-packets> - <in-octets>6001479964389056</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>538251</icmp-in-msgs> - <icmp-in-errors>3037</icmp-in-errors> - <icmp-in-dest-unreachables>3014</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>353295</icmp-in-echos> - <icmp-in-echo-replies>323</icmp-in-echo-replies> - <icmp-in-time-exceeds>23</icmp-in-time-exceeds> - <icmp-in-src-quenches>0</icmp-in-src-quenches> - <icmp-in-timestamps>181596</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>213512213</icmp-out-msgs> - <icmp-out-errors>206548911</icmp-out-errors> - <icmp-out-dest-unreachables>531</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>17577</icmp-out-echos> - <icmp-out-echo-replies>6945725</icmp-out-echo-replies> - <icmp-out-time-exceeds>206548380</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>3308351</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>988977053963</out-packets> - <out-octets>1071409560566191</out-octets> - <out-discard-packets>3308339</out-discard-packets> - <out-discard-octets>282741878</out-discard-octets> - <in-packets>1242692122136</in-packets> - <in-octets>1038088860201487</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.62</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.98.63</ipv4-address> - <oper-state>up</oper-state> - <mac-address>a8:d0:e5:f7:5f:ce</mac-address> - <type>dynamic</type> - <timer>13463</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>880680</icmp6-in-msgs> - <icmp6-in-errors>88</icmp6-in-errors> - <icmp6-in-dest-unreachables>14</icmp6-in-dest-unreachables> - <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> - <icmp6-in-time-exceeds>72</icmp6-in-time-exceeds> - <icmp6-in-parm-problems>0</icmp6-in-parm-problems> - <icmp6-in-pkt-too-bigs>2</icmp6-in-pkt-too-bigs> - <icmp6-in-echos>17432</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>27067</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>836069</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>35618842</icmp6-out-msgs> - <icmp6-out-errors>32641120</icmp6-out-errors> - <icmp6-out-dest-unreachables>10812</icmp6-out-dest-unreachables> - <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> - <icmp6-out-time-exceeds>32630308</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>2114196</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>836459</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>27067</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>939586</icmp6-out-discards> - </statistics> - </icmp6> - <link-local-address> - <oper-address>fe80::82b9:46ff:fef2:2271</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <statistics> - <out-packets>41293916638</out-packets> - <out-octets>41861483362914</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>7137114474</in-packets> - <in-octets>2714391872493</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::69</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:cc::69</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:cc::6a</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>a8:d0:e5:f7:5f:ce</mac-address> - <type>dynamic</type> - <timer>16</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::aad0:e5ff:fef7:5fce</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>a8:d0:e5:f7:5f:ce</mac-address> - <type>dynamic</type> - <timer>2</timer> - </neighbor> - </neighbor-discovery> - </ipv6> - </interface> - <interface> - <interface-name>lag-2.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>2025-01-28T17:01:00.4Z</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>0</total-exceed-count> - <exit-conform-state-count>0</exit-conform-state-count> - </static-policer> - </distributed-cpu-protection> - <statistics> - <ip> - <out-packets>1042333586212</out-packets> - <out-octets>979937447705716</out-octets> - <out-discard-packets>172028510</out-discard-packets> - <out-discard-octets>17697363999</out-discard-octets> - <in-packets>1302782195</in-packets> - <in-octets>158385729701</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>116056231388304</out-packets> - <out-octets>141494751853857214</out-octets> - <in-packets>87651298899740</in-packets> - <in-octets>100499571356880046</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>20471260</icmp-in-msgs> - <icmp-in-errors>69824</icmp-in-errors> - <icmp-in-dest-unreachables>69567</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>16016726</icmp-in-echos> - <icmp-in-echo-replies>807</icmp-in-echo-replies> - <icmp-in-time-exceeds>257</icmp-in-time-exceeds> - <icmp-in-src-quenches>0</icmp-in-src-quenches> - <icmp-in-timestamps>4383901</icmp-in-timestamps> - <icmp-in-timestamp-replies>2</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>657563634</icmp-out-msgs> - <icmp-out-errors>643065038</icmp-out-errors> - <icmp-out-dest-unreachables>94</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>11465</icmp-out-echos> - <icmp-out-echo-replies>14487131</icmp-out-echo-replies> - <icmp-out-time-exceeds>643064944</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>217008171</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>1038216215769</out-packets> - <out-octets>979019158524890</out-octets> - <out-discard-packets>171712431</out-discard-packets> - <out-discard-octets>14852825835</out-discard-octets> - <in-packets>836389445825</in-packets> - <in-octets>949461011372689</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.65</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.98.64</ipv4-address> - <oper-state>up</oper-state> - <mac-address>80:b9:46:f2:0e:72</mac-address> - <type>dynamic</type> - <timer>7273</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>7407196</icmp6-in-msgs> - <icmp6-in-errors>4816</icmp6-in-errors> - <icmp6-in-dest-unreachables>39</icmp6-in-dest-unreachables> - <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> - <icmp6-in-time-exceeds>4776</icmp6-in-time-exceeds> - <icmp6-in-parm-problems>0</icmp6-in-parm-problems> - <icmp6-in-pkt-too-bigs>1</icmp6-in-pkt-too-bigs> - <icmp6-in-echos>6363771</icmp6-in-echos> - <icmp6-in-echo-replies>10</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>521658</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>516890</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>90643273</icmp6-out-msgs> - <icmp6-out-errors>82409128</icmp6-out-errors> - <icmp6-out-dest-unreachables>485</icmp6-out-dest-unreachables> - <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> - <icmp6-out-time-exceeds>82408621</icmp6-out-time-exceeds> - <icmp6-out-parm-problems>0</icmp6-out-parm-problems> - <icmp6-out-pkt-too-bigs>22</icmp6-out-pkt-too-bigs> - <icmp6-out-echos>10</icmp6-out-echos> - <icmp6-out-echo-replies>5408285</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>518033</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>521657</icmp6-out-nbr-advertisements> - <icmp6-out-redirects>1786160</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>40102265</icmp6-out-discards> - </statistics> - </icmp6> - <link-local-address> - <oper-address>fe80::82b9:46ff:fef2:2272</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <statistics> - <out-packets>4117370443</out-packets> - <out-octets>918289180826</out-octets> - <out-discard-packets>316079</out-discard-packets> - <out-discard-octets>2844538164</out-discard-octets> - <in-packets>25106563623</in-packets> - <in-octets>21084163464277</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::2a</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:cc:1::2a</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:cc:1::29</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>80:b9:46:f2:0e:72</mac-address> - <type>dynamic</type> - <timer>21</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::82b9:46ff:fef2:e72</ipv6-address> - <state>delay</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>80:b9:46:f2:0e:72</mac-address> - <type>dynamic</type> - <timer>3</timer> - </neighbor> - </neighbor-discovery> - </ipv6> - </interface> - <interface> - <interface-name>lag-8.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-09-10T08:12:08.2Z</last-oper-change> - <distributed-cpu-protection> - <static-policer> - <name>ICMP_LIMIT</name> - <card>1</card> - <fp-number>2</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>0</total-exceed-count> - <exit-conform-state-count>0</exit-conform-state-count> - </static-policer> - </distributed-cpu-protection> - <statistics> - <ip> - <out-packets>1115537495594</out-packets> - <out-octets>1157689800660238</out-octets> - <out-discard-packets>246050</out-discard-packets> - <out-discard-octets>1949918204</out-discard-octets> - <in-packets>601996936</in-packets> - <in-octets>83167106008</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>86307658935332</out-packets> - <out-octets>98999066586289352</out-octets> - <in-packets>111305729828293</in-packets> - <in-octets>135682653186707717</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>9242888</icmp-in-msgs> - <icmp-in-errors>995</icmp-in-errors> - <icmp-in-dest-unreachables>73</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>7114567</icmp-in-echos> - <icmp-in-echo-replies>148</icmp-in-echo-replies> - <icmp-in-time-exceeds>922</icmp-in-time-exceeds> - <icmp-in-src-quenches>0</icmp-in-src-quenches> - <icmp-in-timestamps>2127178</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>149401947</icmp-out-msgs> - <icmp-out-errors>147039714</icmp-out-errors> - <icmp-out-dest-unreachables>3365</icmp-out-dest-unreachables> - <icmp-out-redirects>7513</icmp-out-redirects> - <icmp-out-echos>196268</icmp-out-echos> - <icmp-out-echo-replies>2158452</icmp-out-echo-replies> - <icmp-out-time-exceeds>147036349</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>597700</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>610998693439</out-packets> - <out-octets>494033233319841</out-octets> - <out-discard-packets>104129</out-discard-packets> - <out-discard-octets>672653453</out-discard-octets> - <in-packets>122665999940</in-packets> - <in-octets>55607513180484</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.106</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.98.107</ipv4-address> - <oper-state>up</oper-state> - <mac-address>00:31:26:69:df:80</mac-address> - <type>dynamic</type> - <timer>5349</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>2493080</icmp6-in-msgs> - <icmp6-in-errors>198361</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>198337</icmp6-in-time-exceeds> - <icmp6-in-parm-problems>0</icmp6-in-parm-problems> - <icmp6-in-pkt-too-bigs>24</icmp6-in-pkt-too-bigs> - <icmp6-in-echos>1142853</icmp6-in-echos> - <icmp6-in-echo-replies>10</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>520262</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>612930</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>23803756</icmp6-out-msgs> - <icmp6-out-errors>22659538</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>22659534</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>10</icmp6-out-echos> - <icmp6-out-echo-replies>4366</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>619580</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>520262</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>53624</icmp6-out-discards> - </statistics> - </icmp6> - <link-local-address> - <oper-address>fe80::82b9:46ff:fef2:2278</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <statistics> - <out-packets>504538802155</out-packets> - <out-octets>663656567340397</out-octets> - <out-discard-packets>141921</out-discard-packets> - <out-discard-octets>1277264751</out-discard-octets> - <in-packets>11569093496</in-packets> - <in-octets>11043631341467</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::b9</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:cc:1::b9</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:cc:1::ba</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>00:31:26:69:df:80</mac-address> - <type>dynamic</type> - <timer>11</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::231:26ff:fe69:df80</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>00:31:26:69:df:80</mac-address> - <type>dynamic</type> - <timer>7</timer> - </neighbor> - </neighbor-discovery> - </ipv6> - </interface> - <interface> - <interface-name>lag-6.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>2025-01-22T22:16:21.5Z</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>0</total-exceed-count> - <exit-conform-state-count>0</exit-conform-state-count> - </static-policer> - </distributed-cpu-protection> - <statistics> - <ip> - <out-packets>2623197180</out-packets> - <out-octets>1186610163293</out-octets> - <out-discard-packets>8</out-discard-packets> - <out-discard-octets>648</out-discard-octets> - <in-packets>23697793</in-packets> - <in-octets>3831412199</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - <mpls> - <out-packets>6263667522</out-packets> - <out-octets>5082469092007</out-octets> - <in-packets>12355343095</in-packets> - <in-octets>6216959396096</in-octets> - </mpls> - </statistics> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>364120</icmp-in-msgs> - <icmp-in-errors>9</icmp-in-errors> - <icmp-in-dest-unreachables>3</icmp-in-dest-unreachables> - <icmp-in-redirects>0</icmp-in-redirects> - <icmp-in-echos>707</icmp-in-echos> - <icmp-in-echo-replies>11</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>363393</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>112138</icmp-out-msgs> - <icmp-out-errors>111250</icmp-out-errors> - <icmp-out-dest-unreachables>155</icmp-out-dest-unreachables> - <icmp-out-redirects>0</icmp-out-redirects> - <icmp-out-echos>222</icmp-out-echos> - <icmp-out-echo-replies>666</icmp-out-echo-replies> - <icmp-out-time-exceeds>111095</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>2343283654</out-packets> - <out-octets>1157119205161</out-octets> - <out-discard-packets>8</out-discard-packets> - <out-discard-octets>648</out-discard-octets> - <in-packets>820811365</in-packets> - <in-octets>136595658235</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.19</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.98.18</ipv4-address> - <oper-state>up</oper-state> - <mac-address>e4:5d:37:87:11:70</mac-address> - <type>dynamic</type> - <timer>13484</timer> - </neighbor> - </neighbor-discovery> - </ipv4> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>445604</icmp6-in-msgs> - <icmp6-in-errors>5</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>5</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>11554</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>434045</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>485974</icmp6-out-msgs> - <icmp6-out-errors>39388</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>39388</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>435032</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>11554</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:fef2:2276</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <statistics> - <out-packets>279913526</out-packets> - <out-octets>29490958132</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::16</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:cc::16</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:cc::15</ipv6-address> - <state>stale</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>e4:5d:37:87:11:70</mac-address> - <type>dynamic</type> - <timer>14209</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::e65d:37ff:fe87:1170</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>e4:5d:37:87:11:70</mac-address> - <type>dynamic</type> - <timer>19</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>2024-06-24T08:48:05.7Z</last-oper-change> - <statistics> - <ip> - <out-packets>2</out-packets> - <out-octets>168</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>8</in-packets> - <in-octets>556</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>2</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>2</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>2</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>2</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/data/rt0.lon2.uk.geant.net-ports.xml b/test/interface_stats/data/rt0.lon2.uk.geant.net-state.xml similarity index 91% rename from test/interface_stats/data/rt0.lon2.uk.geant.net-ports.xml rename to test/interface_stats/data/rt0.lon2.uk.geant.net-state.xml index 0df59b6a0393452724a08549be9e8c460a99881b..c59eaa05538ea53dfba29a198e11ba5326cb576e 100644 --- a/test/interface_stats/data/rt0.lon2.uk.geant.net-ports.xml +++ b/test/interface_stats/data/rt0.lon2.uk.geant.net-state.xml @@ -1,6 +1,106 @@ -<rpc-reply message-id="urn:uuid:8cb64c24-59be-4c2c-b303-a76a4d8f806a"> +<rpc-reply message-id="urn:uuid:9d141d23-499d-4f15-8205-2b0574bc55a3"> <data> <state> + <lag> + <lag-name>lag-1</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>7541721441355474</in-octets> + <in-packets>6592684774206</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>13042</in-broadcast-packets> + <in-multicast-packets>41732740</in-multicast-packets> + <in-unicast-packets>6592643028424</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>1676376830837124</out-octets> + <out-packets>1639478393813</out-packets> + <out-broadcast-packets>2</out-broadcast-packets> + <out-multicast-packets>743421775605</out-multicast-packets> + <out-unicast-packets>896056618206</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-2</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>108939576747487785</in-octets> + <in-packets>95003349535733</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>28</in-broadcast-packets> + <in-multicast-packets>732824090261</in-multicast-packets> + <in-unicast-packets>94270525445444</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>154972249884965536</out-octets> + <out-packets>126612974579791</out-packets> + <out-broadcast-packets>25</out-broadcast-packets> + <out-multicast-packets>10165090108</out-multicast-packets> + <out-unicast-packets>126602809489658</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-6</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>13147441346301</in-octets> + <in-packets>26035478329</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>12842</in-broadcast-packets> + <in-multicast-packets>27736436</in-multicast-packets> + <in-unicast-packets>26007729051</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>15014616448717</out-octets> + <out-packets>17710980059</out-packets> + <out-broadcast-packets>24</out-broadcast-packets> + <out-multicast-packets>633866882</out-multicast-packets> + <out-unicast-packets>17077113153</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>146908405008128714</in-octets> + <in-packets>120084825361380</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>1948</in-broadcast-packets> + <in-multicast-packets>11073881760</in-multicast-packets> + <in-unicast-packets>120073751477672</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>108471109923506246</out-octets> + <out-packets>94237734678351</out-packets> + <out-broadcast-packets>17</out-broadcast-packets> + <out-multicast-packets>4615835874</out-multicast-packets> + <out-unicast-packets>94233118842460</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-20</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>10312217525837816</in-octets> + <in-packets>7099233109403</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>2081</in-broadcast-packets> + <in-multicast-packets>4540005</in-multicast-packets> + <in-unicast-packets>7099228567317</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>8590925167484851</out-octets> + <out-packets>6316540761221</out-packets> + <out-broadcast-packets>15</out-broadcast-packets> + <out-multicast-packets>3353971606</out-multicast-packets> + <out-unicast-packets>6313186789600</out-unicast-packets> + </statistics> + </lag> <port> <port-id>1/1/c1</port-id> <statistics> @@ -27,20 +127,20 @@ <counter-discontinuity-time>2024-08-13T08:10:23.4Z</counter-discontinuity-time> <last-cleared-time>2024-08-13T08:10:23.4Z</last-cleared-time> <in-discards>0</in-discards> - <in-errors>36</in-errors> - <in-octets>50000420773801655</in-octets> - <in-packets>43692212121036</in-packets> + <in-errors>38</in-errors> + <in-octets>53682864128783882</in-octets> + <in-packets>46900468449869</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>25</in-broadcast-packets> - <in-multicast-packets>391244076835</in-multicast-packets> - <in-unicast-packets>43300968044176</in-unicast-packets> + <in-broadcast-packets>28</in-broadcast-packets> + <in-multicast-packets>409126312811</in-multicast-packets> + <in-unicast-packets>46491342137030</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>68771079266737151</out-octets> - <out-packets>53407402419940</out-packets> - <out-broadcast-packets>23</out-broadcast-packets> - <out-multicast-packets>3412003238</out-multicast-packets> - <out-unicast-packets>53403990416679</out-unicast-packets> + <out-octets>74391054519101665</out-octets> + <out-packets>57505859798015</out-packets> + <out-broadcast-packets>25</out-broadcast-packets> + <out-multicast-packets>6591347780</out-multicast-packets> + <out-unicast-packets>57499268450210</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -74,7 +174,7 @@ <mdi-type>unknown</mdi-type> <oper-duplex>full</oper-duplex> <oper-speed>400000</oper-speed> - <oper-state-change-count>21</oper-state-change-count> + <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> @@ -114,29 +214,29 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>25</in-broadcast-packets> - <in-multicast-packets>391244076835</in-multicast-packets> - <in-unicast-packets>43300968044176</in-unicast-packets> - <in-errors>36</in-errors> - <in-octets>50000420773801655</in-octets> - <in-utilization>3103</in-utilization> - <out-broadcast-packets>23</out-broadcast-packets> - <out-multicast-packets>3412003238</out-multicast-packets> - <out-unicast-packets>53403990416679</out-unicast-packets> + <in-broadcast-packets>28</in-broadcast-packets> + <in-multicast-packets>409126312811</in-multicast-packets> + <in-unicast-packets>46491342137030</in-unicast-packets> + <in-errors>38</in-errors> + <in-octets>53682864128783882</in-octets> + <in-utilization>2097</in-utilization> + <out-broadcast-packets>25</out-broadcast-packets> + <out-multicast-packets>6591347780</out-multicast-packets> + <out-unicast-packets>57499268450210</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>68771079266737151</out-octets> - <out-utilization>2723</out-utilization> + <out-octets>74391054519101665</out-octets> + <out-utilization>1440</out-utilization> <collisions>0</collisions> <crc-align-errors>11</crc-align-errors> <drop-events>0</drop-events> - <fragments>1</fragments> + <fragments>2</fragments> <jabbers>9</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>48</total-broadcast-packets> - <total-multicast-packets>394656080073</total-multicast-packets> - <total-octets>118771500040538806</total-octets> - <total-packets>97099614540976</total-packets> + <total-broadcast-packets>53</total-broadcast-packets> + <total-multicast-packets>415717660591</total-multicast-packets> + <total-octets>128073918647885547</total-octets> + <total-packets>104406328247884</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -146,7 +246,7 @@ <single>0</single> </collision> <error> - <alignment>15</alignment> + <alignment>16</alignment> <carrier-sense>0</carrier-sense> <fcs>11</fcs> <internal-mac-transmitted>0</internal-mac-transmitted> @@ -159,13 +259,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>782142157626</octets-64> - <octets-65-to-127>16199392548835</octets-65-to-127> - <octets-128-to-255>1731079374988</octets-128-to-255> - <octets-256-to-511>1033933455413</octets-256-to-511> - <octets-512-to-1023>1437742895330</octets-512-to-1023> - <octets-1024-to-1518>16555233679252</octets-1024-to-1518> - <octets-1519-to-max>59360090429532</octets-1519-to-max> + <octets-64>826991888115</octets-64> + <octets-65-to-127>17378282945500</octets-65-to-127> + <octets-128-to-255>1838643813586</octets-128-to-255> + <octets-256-to-511>1094216375726</octets-256-to-511> + <octets-512-to-1023>1524715365317</octets-512-to-1023> + <octets-1024-to-1518>17810739752101</octets-1024-to-1518> + <octets-1519-to-max>63932738107539</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -239,9 +339,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>2411452221</remote-time-mark> - <remote-index>71</remote-index> - <age>165172</age> + <remote-time-mark>2462551521</remote-time-mark> + <remote-index>76</remote-index> + <age>581785</age> <chassis-id>80:B9:46:F2:0D:30</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>1611161665</remote-port-id> @@ -254,12 +354,12 @@ </remote-system> <statistics> <transmit> - <frames>490434</frames> + <frames>521359</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>2</age-outs> - <frames>490427</frames> + <frames>521351</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -3039,20 +3139,20 @@ <counter-discontinuity-time>2024-08-13T08:10:23.4Z</counter-discontinuity-time> <last-cleared-time>2024-08-13T08:10:23.4Z</last-cleared-time> <in-discards>0</in-discards> - <in-errors>27</in-errors> - <in-octets>51469727612685566</in-octets> - <in-packets>44820677876246</in-packets> + <in-errors>29</in-errors> + <in-octets>55256712618703903</in-octets> + <in-packets>48102881085864</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>302893517982</in-multicast-packets> - <in-unicast-packets>44517784358264</in-unicast-packets> + <in-multicast-packets>323697777450</in-multicast-packets> + <in-unicast-packets>47779183308414</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>73703598123165335</out-octets> - <out-packets>63691182499649</out-packets> + <out-octets>80581195365863871</out-octets> + <out-packets>69107114781776</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>1901144612</out-multicast-packets> - <out-unicast-packets>63689281355037</out-unicast-packets> + <out-multicast-packets>3573742328</out-multicast-packets> + <out-unicast-packets>69103541039448</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -3086,7 +3186,7 @@ <mdi-type>unknown</mdi-type> <oper-duplex>full</oper-duplex> <oper-speed>400000</oper-speed> - <oper-state-change-count>19</oper-state-change-count> + <oper-state-change-count>21</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> @@ -3127,28 +3227,28 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>302893517982</in-multicast-packets> - <in-unicast-packets>44517784358264</in-unicast-packets> - <in-errors>27</in-errors> - <in-octets>51469727612685566</in-octets> - <in-utilization>2865</in-utilization> + <in-multicast-packets>323697777450</in-multicast-packets> + <in-unicast-packets>47779183308414</in-unicast-packets> + <in-errors>29</in-errors> + <in-octets>55256712618703903</in-octets> + <in-utilization>2149</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>1901144612</out-multicast-packets> - <out-unicast-packets>63689281355037</out-unicast-packets> + <out-multicast-packets>3573742328</out-multicast-packets> + <out-unicast-packets>69103541039448</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>73703598123165335</out-octets> - <out-utilization>2969</out-utilization> + <out-octets>80581195365863871</out-octets> + <out-utilization>2170</out-utilization> <collisions>0</collisions> <crc-align-errors>6</crc-align-errors> <drop-events>0</drop-events> - <fragments>0</fragments> + <fragments>1</fragments> <jabbers>8</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>304794662594</total-multicast-packets> - <total-octets>125173325735850901</total-octets> - <total-packets>108511860375895</total-packets> + <total-multicast-packets>327271519778</total-multicast-packets> + <total-octets>135837907984567774</total-octets> + <total-packets>117209995867640</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -3158,7 +3258,7 @@ <single>0</single> </collision> <error> - <alignment>13</alignment> + <alignment>14</alignment> <carrier-sense>0</carrier-sense> <fcs>6</fcs> <internal-mac-transmitted>0</internal-mac-transmitted> @@ -3171,13 +3271,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>780042908947</octets-64> - <octets-65-to-127>21716975416699</octets-65-to-127> - <octets-128-to-255>3249282007481</octets-128-to-255> - <octets-256-to-511>1481587869633</octets-256-to-511> - <octets-512-to-1023>1890338328951</octets-512-to-1023> - <octets-1024-to-1518>18844635982845</octets-1024-to-1518> - <octets-1519-to-max>60548997861339</octets-1519-to-max> + <octets-64>823488541634</octets-64> + <octets-65-to-127>23254227325462</octets-65-to-127> + <octets-128-to-255>3480808001227</octets-128-to-255> + <octets-256-to-511>1573867767009</octets-256-to-511> + <octets-512-to-1023>2017094097647</octets-512-to-1023> + <octets-1024-to-1518>20328065779663</octets-1024-to-1518> + <octets-1519-to-max>65732444354998</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -3251,9 +3351,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>2411452241</remote-time-mark> - <remote-index>72</remote-index> - <age>165173</age> + <remote-time-mark>2462551541</remote-time-mark> + <remote-index>77</remote-index> + <age>581786</age> <chassis-id>80:B9:46:F2:0D:30</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>1611161921</remote-port-id> @@ -3266,12 +3366,12 @@ </remote-system> <statistics> <transmit> - <frames>490430</frames> + <frames>521355</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>2</age-outs> - <frames>490428</frames> + <frames>521352</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -3764,19 +3864,19 @@ <last-cleared-time>2024-08-14T08:49:52.9Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>6423646581901</in-octets> - <in-packets>13660669904</in-packets> + <in-octets>13147441346301</in-octets> + <in-packets>26035478329</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>12063</in-broadcast-packets> - <in-multicast-packets>26049855</in-multicast-packets> - <in-unicast-packets>13634607986</in-unicast-packets> + <in-broadcast-packets>12842</in-broadcast-packets> + <in-multicast-packets>27736436</in-multicast-packets> + <in-unicast-packets>26007729051</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>6274323553956</out-octets> - <out-packets>8912093835</out-packets> - <out-broadcast-packets>18</out-broadcast-packets> - <out-multicast-packets>425599389</out-multicast-packets> - <out-unicast-packets>8486494428</out-unicast-packets> + <out-octets>15014616448717</out-octets> + <out-packets>17710980059</out-packets> + <out-broadcast-packets>24</out-broadcast-packets> + <out-multicast-packets>633866882</out-multicast-packets> + <out-unicast-packets>17077113153</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -3810,7 +3910,7 @@ <mdi-type>unknown</mdi-type> <oper-duplex>full</oper-duplex> <oper-speed>100000</oper-speed> - <oper-state-change-count>29</oper-state-change-count> + <oper-state-change-count>33</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> @@ -3850,17 +3950,17 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>12063</in-broadcast-packets> - <in-multicast-packets>26049855</in-multicast-packets> - <in-unicast-packets>13634607986</in-unicast-packets> + <in-broadcast-packets>12842</in-broadcast-packets> + <in-multicast-packets>27736436</in-multicast-packets> + <in-unicast-packets>26007729051</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>6423646581901</in-octets> + <in-octets>13147441346301</in-octets> <in-utilization>0</in-utilization> - <out-broadcast-packets>18</out-broadcast-packets> - <out-multicast-packets>425599389</out-multicast-packets> - <out-unicast-packets>8486494428</out-unicast-packets> + <out-broadcast-packets>24</out-broadcast-packets> + <out-multicast-packets>633866882</out-multicast-packets> + <out-unicast-packets>17077113153</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>6274323553956</out-octets> + <out-octets>15014616448717</out-octets> <out-utilization>0</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> @@ -3869,10 +3969,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>12081</total-broadcast-packets> - <total-multicast-packets>451649244</total-multicast-packets> - <total-octets>12697970135857</total-octets> - <total-packets>22572763739</total-packets> + <total-broadcast-packets>12866</total-broadcast-packets> + <total-multicast-packets>661603318</total-multicast-packets> + <total-octets>28162057795018</total-octets> + <total-packets>43746458388</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -3895,13 +3995,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>253768698</octets-64> - <octets-65-to-127>11408528127</octets-65-to-127> - <octets-128-to-255>1407385128</octets-128-to-255> - <octets-256-to-511>1346646193</octets-256-to-511> - <octets-512-to-1023>967768435</octets-512-to-1023> - <octets-1024-to-1518>4234377671</octets-1024-to-1518> - <octets-1519-to-max>2954289487</octets-1519-to-max> + <octets-64>349011076</octets-64> + <octets-65-to-127>20817369480</octets-65-to-127> + <octets-128-to-255>2266865364</octets-128-to-255> + <octets-256-to-511>1979970249</octets-256-to-511> + <octets-512-to-1023>1525793359</octets-512-to-1023> + <octets-1024-to-1518>9236777598</octets-1024-to-1518> + <octets-1519-to-max>7570671262</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -3975,9 +4075,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>2361502911</remote-time-mark> - <remote-index>70</remote-index> - <age>664667</age> + <remote-time-mark>2461610831</remote-time-mark> + <remote-index>75</remote-index> + <age>591193</age> <chassis-id>E4:5D:37:87:11:6C</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>et-0/0/0</remote-port-id> @@ -3997,16 +4097,16 @@ </remote-system> <statistics> <transmit> - <frames>482711</frames> + <frames>513640</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>7</age-outs> - <frames>521746</frames> + <frames>555183</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2086820</tlv-unknown> + <tlv-unknown>2220568</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -5467,19 +5567,19 @@ <last-cleared-time>2025-01-28T12:20:20.1Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>236804268470334</in-octets> - <in-packets>170867863219</in-packets> + <in-octets>2586675634721312</in-octets> + <in-packets>1785026074337</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>532</in-broadcast-packets> - <in-multicast-packets>199817</in-multicast-packets> - <in-unicast-packets>170867662870</in-unicast-packets> + <in-broadcast-packets>2081</in-broadcast-packets> + <in-multicast-packets>1220013</in-multicast-packets> + <in-unicast-packets>1785024852243</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>247491609593945</out-octets> - <out-packets>183390108222</out-packets> + <out-octets>2140609757723928</out-octets> + <out-packets>1573448370493</out-packets> <out-broadcast-packets>15</out-broadcast-packets> - <out-multicast-packets>218392589</out-multicast-packets> - <out-unicast-packets>183171715618</out-unicast-packets> + <out-multicast-packets>1156576905</out-multicast-packets> + <out-unicast-packets>1572291793573</out-unicast-packets> </statistics> <ethernet> <current-alarms/> @@ -5527,18 +5627,18 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>532</in-broadcast-packets> - <in-multicast-packets>199817</in-multicast-packets> - <in-unicast-packets>170867662870</in-unicast-packets> + <in-broadcast-packets>2081</in-broadcast-packets> + <in-multicast-packets>1220013</in-multicast-packets> + <in-unicast-packets>1785024852243</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>236804268470334</in-octets> - <in-utilization>3709</in-utilization> + <in-octets>2586675634721312</in-octets> + <in-utilization>2821</in-utilization> <out-broadcast-packets>15</out-broadcast-packets> - <out-multicast-packets>218392589</out-multicast-packets> - <out-unicast-packets>183171715618</out-unicast-packets> + <out-multicast-packets>1156576905</out-multicast-packets> + <out-unicast-packets>1572291793573</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>247491609593945</out-octets> - <out-utilization>2653</out-utilization> + <out-octets>2140609757723928</out-octets> + <out-utilization>3341</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -5546,10 +5646,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>547</total-broadcast-packets> - <total-multicast-packets>218592406</total-multicast-packets> - <total-octets>484295878064279</total-octets> - <total-packets>354257971441</total-packets> + <total-broadcast-packets>2096</total-broadcast-packets> + <total-multicast-packets>1157796918</total-multicast-packets> + <total-octets>4727285392445240</total-octets> + <total-packets>3358474444830</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -5572,13 +5672,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>2380150126</octets-64> - <octets-65-to-127>38227623769</octets-65-to-127> - <octets-128-to-255>1153789247</octets-128-to-255> - <octets-256-to-511>698912723</octets-256-to-511> - <octets-512-to-1023>1411796022</octets-512-to-1023> - <octets-1024-to-1518>52593921121</octets-1024-to-1518> - <octets-1519-to-max>257791778433</octets-1519-to-max> + <octets-64>23024493034</octets-64> + <octets-65-to-127>331772713053</octets-65-to-127> + <octets-128-to-255>8039637577</octets-128-to-255> + <octets-256-to-511>4975038869</octets-256-to-511> + <octets-512-to-1023>12736591542</octets-512-to-1023> + <octets-1024-to-1518>338936296055</octets-1024-to-1518> + <octets-1519-to-max>2638989674700</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -5741,7 +5841,7 @@ <mac-type>nearest-bridge</mac-type> <statistics> <transmit> - <frames>6061</frames> + <frames>36981</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> @@ -5855,19 +5955,19 @@ <last-cleared-time>2025-01-28T12:20:20.1Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>237734535915770</in-octets> - <in-packets>171168709868</in-packets> + <in-octets>2586233856104959</in-octets> + <in-packets>1779512896481</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181331</in-multicast-packets> - <in-unicast-packets>171168528537</in-unicast-packets> + <in-multicast-packets>1106566</in-multicast-packets> + <in-unicast-packets>1779511789915</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>247606288153740</out-octets> - <out-packets>184268929373</out-packets> + <out-octets>2140268488806036</out-octets> + <out-packets>1572885626272</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>35734855</out-multicast-packets> - <out-unicast-packets>184233194518</out-unicast-packets> + <out-multicast-packets>1457395758</out-multicast-packets> + <out-unicast-packets>1571428230514</out-unicast-packets> </statistics> <ethernet> <current-alarms/> @@ -5916,17 +6016,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181331</in-multicast-packets> - <in-unicast-packets>171168528537</in-unicast-packets> + <in-multicast-packets>1106566</in-multicast-packets> + <in-unicast-packets>1779511789915</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>237734535915770</in-octets> - <in-utilization>3866</in-utilization> + <in-octets>2586233856104959</in-octets> + <in-utilization>2559</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>35734855</out-multicast-packets> - <out-unicast-packets>184233194518</out-unicast-packets> + <out-multicast-packets>1457395758</out-multicast-packets> + <out-unicast-packets>1571428230514</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>247606288153740</out-octets> - <out-utilization>2608</out-utilization> + <out-octets>2140268488806036</out-octets> + <out-utilization>3195</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -5935,9 +6035,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>35916186</total-multicast-packets> - <total-octets>485340824069510</total-octets> - <total-packets>355437639241</total-packets> + <total-multicast-packets>1458502324</total-multicast-packets> + <total-octets>4726502344910995</total-octets> + <total-packets>3352398522753</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -5960,13 +6060,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>2452677168</octets-64> - <octets-65-to-127>38579384497</octets-65-to-127> - <octets-128-to-255>1100179344</octets-128-to-255> - <octets-256-to-511>684500791</octets-256-to-511> - <octets-512-to-1023>1333095745</octets-512-to-1023> - <octets-1024-to-1518>52435133493</octets-1024-to-1518> - <octets-1519-to-max>258852668203</octets-1519-to-max> + <octets-64>23088501878</octets-64> + <octets-65-to-127>327487319100</octets-65-to-127> + <octets-128-to-255>6616096349</octets-128-to-255> + <octets-256-to-511>5248205984</octets-256-to-511> + <octets-512-to-1023>12760079928</octets-512-to-1023> + <octets-1024-to-1518>331186992679</octets-1024-to-1518> + <octets-1519-to-max>2646011326835</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -6129,7 +6229,7 @@ <mac-type>nearest-bridge</mac-type> <statistics> <transmit> - <frames>6061</frames> + <frames>36981</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> @@ -6263,19 +6363,19 @@ <last-cleared-time>2025-01-28T12:20:20.1Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>231522360877589</in-octets> - <in-packets>166718175961</in-packets> + <in-octets>2563185523780571</in-octets> + <in-packets>1760087179553</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181358</in-multicast-packets> - <in-unicast-packets>166717994603</in-unicast-packets> + <in-multicast-packets>1106716</in-multicast-packets> + <in-unicast-packets>1760086072837</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>249647169990128</out-octets> - <out-packets>184769265761</out-packets> + <out-octets>2178816900926243</out-octets> + <out-packets>1602924235517</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>70987444</out-multicast-packets> - <out-unicast-packets>184698278317</out-unicast-packets> + <out-multicast-packets>516584842</out-multicast-packets> + <out-unicast-packets>1602407650675</out-unicast-packets> </statistics> <ethernet> <current-alarms/> @@ -6324,17 +6424,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181358</in-multicast-packets> - <in-unicast-packets>166717994603</in-unicast-packets> + <in-multicast-packets>1106716</in-multicast-packets> + <in-unicast-packets>1760086072837</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>231522360877589</in-octets> - <in-utilization>3578</in-utilization> + <in-octets>2563185523780571</in-octets> + <in-utilization>2753</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>70987444</out-multicast-packets> - <out-unicast-packets>184698278317</out-unicast-packets> + <out-multicast-packets>516584842</out-multicast-packets> + <out-unicast-packets>1602407650675</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>249647169990128</out-octets> - <out-utilization>2685</out-utilization> + <out-octets>2178816900926243</out-octets> + <out-utilization>3194</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -6343,9 +6443,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>71168802</total-multicast-packets> - <total-octets>481169530867717</total-octets> - <total-packets>351487441722</total-packets> + <total-multicast-packets>517691558</total-multicast-packets> + <total-octets>4742002424706814</total-octets> + <total-packets>3363011415070</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -6368,13 +6468,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>2304713925</octets-64> - <octets-65-to-127>37772321655</octets-65-to-127> - <octets-128-to-255>931418165</octets-128-to-255> - <octets-256-to-511>639937973</octets-256-to-511> - <octets-512-to-1023>1644413185</octets-512-to-1023> - <octets-1024-to-1518>50552738047</octets-1024-to-1518> - <octets-1519-to-max>257641898772</octets-1519-to-max> + <octets-64>23458059870</octets-64> + <octets-65-to-127>324571853581</octets-65-to-127> + <octets-128-to-255>7122183456</octets-128-to-255> + <octets-256-to-511>5061421425</octets-256-to-511> + <octets-512-to-1023>13107719245</octets-512-to-1023> + <octets-1024-to-1518>341647772992</octets-1024-to-1518> + <octets-1519-to-max>2648042404501</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -6537,7 +6637,7 @@ <mac-type>nearest-bridge</mac-type> <statistics> <transmit> - <frames>6061</frames> + <frames>36981</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> @@ -6651,19 +6751,19 @@ <last-cleared-time>2025-01-28T12:20:20.2Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>237563296553978</in-octets> - <in-packets>171081319041</in-packets> + <in-octets>2576139806726807</in-octets> + <in-packets>1774619046099</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181358</in-multicast-packets> - <in-unicast-packets>171081137683</in-unicast-packets> + <in-multicast-packets>1106714</in-multicast-packets> + <in-unicast-packets>1774617939385</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>252072275877988</out-octets> - <out-packets>187681098279</out-packets> + <out-octets>2131246083262221</out-octets> + <out-packets>1567292802819</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>36185386</out-multicast-packets> - <out-unicast-packets>187644912893</out-unicast-packets> + <out-multicast-packets>223416595</out-multicast-packets> + <out-unicast-packets>1567069386224</out-unicast-packets> </statistics> <ethernet> <current-alarms/> @@ -6712,17 +6812,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>181358</in-multicast-packets> - <in-unicast-packets>171081137683</in-unicast-packets> + <in-multicast-packets>1106714</in-multicast-packets> + <in-unicast-packets>1774617939385</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>237563296553978</in-octets> - <in-utilization>3623</in-utilization> + <in-octets>2576139806726807</in-octets> + <in-utilization>2819</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>36185386</out-multicast-packets> - <out-unicast-packets>187644912893</out-unicast-packets> + <out-multicast-packets>223416595</out-multicast-packets> + <out-unicast-packets>1567069386224</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>252072275877988</out-octets> - <out-utilization>2337</out-utilization> + <out-octets>2131246083262221</out-octets> + <out-utilization>3519</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -6731,9 +6831,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>36366744</total-multicast-packets> - <total-octets>489635572431966</total-octets> - <total-packets>358762417320</total-packets> + <total-multicast-packets>224523309</total-multicast-packets> + <total-octets>4707385889989028</total-octets> + <total-packets>3341911848918</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -6756,13 +6856,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>2452891277</octets-64> - <octets-65-to-127>39003473684</octets-65-to-127> - <octets-128-to-255>1046710296</octets-128-to-255> - <octets-256-to-511>741756312</octets-256-to-511> - <octets-512-to-1023>1585986241</octets-512-to-1023> - <octets-1024-to-1518>51999122556</octets-1024-to-1518> - <octets-1519-to-max>261932476954</octets-1519-to-max> + <octets-64>23502464392</octets-64> + <octets-65-to-127>327122038756</octets-65-to-127> + <octets-128-to-255>7361672973</octets-128-to-255> + <octets-256-to-511>5420086084</octets-256-to-511> + <octets-512-to-1023>12227605721</octets-512-to-1023> + <octets-1024-to-1518>331189505107</octets-1024-to-1518> + <octets-1519-to-max>2635088475885</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -6925,7 +7025,7 @@ <mac-type>nearest-bridge</mac-type> <statistics> <transmit> - <frames>6061</frames> + <frames>36981</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> @@ -7059,19 +7159,19 @@ <last-cleared-time>2024-08-14T08:00:20.1Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>15</in-errors> - <in-octets>72892304892250953</in-octets> - <in-packets>61921518409027</in-packets> + <in-octets>79053740535630221</in-octets> + <in-packets>66844613848448</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>1590</in-broadcast-packets> - <in-multicast-packets>3184896331</in-multicast-packets> - <in-unicast-packets>61918333511106</in-unicast-packets> + <in-multicast-packets>7007862103</in-multicast-packets> + <in-unicast-packets>66837605984755</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>49924012558837533</out-octets> - <out-packets>43565189937156</out-packets> + <out-octets>54017551374219433</out-octets> + <out-packets>46916250760518</out-packets> <out-broadcast-packets>17</out-broadcast-packets> - <out-multicast-packets>2183808016</out-multicast-packets> - <out-unicast-packets>43563006129123</out-unicast-packets> + <out-multicast-packets>2261549525</out-multicast-packets> + <out-unicast-packets>46913989210976</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -7105,7 +7205,7 @@ <mdi-type>unknown</mdi-type> <oper-duplex>full</oper-duplex> <oper-speed>400000</oper-speed> - <oper-state-change-count>33</oper-state-change-count> + <oper-state-change-count>35</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> @@ -7146,17 +7246,17 @@ </ssm> <statistics> <in-broadcast-packets>1590</in-broadcast-packets> - <in-multicast-packets>3184896331</in-multicast-packets> - <in-unicast-packets>61918333511106</in-unicast-packets> + <in-multicast-packets>7007862103</in-multicast-packets> + <in-unicast-packets>66837605984755</in-unicast-packets> <in-errors>15</in-errors> - <in-octets>72892304892250953</in-octets> - <in-utilization>2895</in-utilization> + <in-octets>79053740535630221</in-octets> + <in-utilization>1933</in-utilization> <out-broadcast-packets>17</out-broadcast-packets> - <out-multicast-packets>2183808016</out-multicast-packets> - <out-unicast-packets>43563006129123</out-unicast-packets> + <out-multicast-packets>2261549525</out-multicast-packets> + <out-unicast-packets>46913989210976</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>49924012558837533</out-octets> - <out-utilization>3402</out-utilization> + <out-octets>54017551374219433</out-octets> + <out-utilization>1771</out-utilization> <collisions>0</collisions> <crc-align-errors>4</crc-align-errors> <drop-events>0</drop-events> @@ -7165,9 +7265,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>1607</total-broadcast-packets> - <total-multicast-packets>5368704347</total-multicast-packets> - <total-octets>122816317451088486</total-octets> - <total-packets>105486708346183</total-packets> + <total-multicast-packets>9269411628</total-multicast-packets> + <total-octets>133071291909849654</total-octets> + <total-packets>113760864608966</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -7190,13 +7290,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>812082610701</octets-64> - <octets-65-to-127>21060750248175</octets-65-to-127> - <octets-128-to-255>2892203545351</octets-128-to-255> - <octets-256-to-511>1270694401704</octets-256-to-511> - <octets-512-to-1023>1836523240301</octets-512-to-1023> - <octets-1024-to-1518>16069395207421</octets-1024-to-1518> - <octets-1519-to-max>61545059092530</octets-1519-to-max> + <octets-64>848259719399</octets-64> + <octets-65-to-127>22532932451300</octets-65-to-127> + <octets-128-to-255>3100067104033</octets-128-to-255> + <octets-256-to-511>1351111047864</octets-256-to-511> + <octets-512-to-1023>1955992131879</octets-512-to-1023> + <octets-1024-to-1518>17143265868078</octets-1024-to-1518> + <octets-1519-to-max>66829236286413</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -7270,9 +7370,9 @@ <dest-mac> <mac-type>nearest-bridge</mac-type> <remote-system> - <remote-time-mark>1494074411</remote-time-mark> - <remote-index>44</remote-index> - <age>9338951</age> + <remote-time-mark>2480540611</remote-time-mark> + <remote-index>78</remote-index> + <age>401896</age> <chassis-id>00:31:26:69:DE:38</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>1611161665</remote-port-id> @@ -7285,12 +7385,12 @@ </remote-system> <statistics> <transmit> - <frames>487577</frames> + <frames>518439</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> - <age-outs>0</age-outs> - <frames>493904</frames> + <age-outs>1</age-outs> + <frames>524767</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -10071,19 +10171,19 @@ <last-cleared-time>2024-08-14T08:00:20.1Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>176</in-errors> - <in-octets>62857129858635793</in-octets> - <in-packets>49518785738731</in-packets> + <in-octets>67854687354127656</in-octets> + <in-packets>53240230366211</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>358</in-broadcast-packets> - <in-multicast-packets>2471060476</in-multicast-packets> - <in-unicast-packets>49516314677897</in-unicast-packets> + <in-multicast-packets>4066019662</in-multicast-packets> + <in-unicast-packets>53236164346191</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>50232575979349359</out-octets> - <out-packets>43857908906341</out-packets> + <out-octets>54453586805118020</out-octets> + <out-packets>47321505592691</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>2334907491</out-multicast-packets> - <out-unicast-packets>43855573998850</out-unicast-packets> + <out-multicast-packets>2354286362</out-multicast-packets> + <out-unicast-packets>47319151306329</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -10158,17 +10258,17 @@ </ssm> <statistics> <in-broadcast-packets>358</in-broadcast-packets> - <in-multicast-packets>2471060476</in-multicast-packets> - <in-unicast-packets>49516314677897</in-unicast-packets> + <in-multicast-packets>4066019662</in-multicast-packets> + <in-unicast-packets>53236164346191</in-unicast-packets> <in-errors>176</in-errors> - <in-octets>62857129858635793</in-octets> - <in-utilization>2505</in-utilization> + <in-octets>67854687354127656</in-octets> + <in-utilization>1479</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>2334907491</out-multicast-packets> - <out-unicast-packets>43855573998850</out-unicast-packets> + <out-multicast-packets>2354286362</out-multicast-packets> + <out-unicast-packets>47319151306329</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>50232575979349359</out-octets> - <out-utilization>3506</out-utilization> + <out-octets>54453586805118020</out-octets> + <out-utilization>1788</out-utilization> <collisions>0</collisions> <crc-align-errors>41</crc-align-errors> <drop-events>0</drop-events> @@ -10177,9 +10277,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>358</total-broadcast-packets> - <total-multicast-packets>4805967967</total-multicast-packets> - <total-octets>113089705837985152</total-octets> - <total-packets>93376694645072</total-packets> + <total-multicast-packets>6420306024</total-multicast-packets> + <total-octets>122308274159245676</total-octets> + <total-packets>100561735958902</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -10202,13 +10302,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>791466100231</octets-64> - <octets-65-to-127>16472397245031</octets-65-to-127> - <octets-128-to-255>1798517300751</octets-128-to-255> - <octets-256-to-511>982003617275</octets-256-to-511> - <octets-512-to-1023>1461109983053</octets-512-to-1023> - <octets-1024-to-1518>14829073715426</octets-1024-to-1518> - <octets-1519-to-max>57042126683305</octets-1519-to-max> + <octets-64>826857147463</octets-64> + <octets-65-to-127>17631846074185</octets-65-to-127> + <octets-128-to-255>1915132587631</octets-128-to-255> + <octets-256-to-511>1041369073299</octets-256-to-511> + <octets-512-to-1023>1547913050424</octets-512-to-1023> + <octets-1024-to-1518>15782155825861</octets-1024-to-1518> + <octets-1519-to-max>61816462200039</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -10284,7 +10384,7 @@ <remote-system> <remote-time-mark>2421759631</remote-time-mark> <remote-index>73</remote-index> - <age>62100</age> + <age>989706</age> <chassis-id>00:31:26:69:DE:38</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>1611161921</remote-port-id> @@ -10297,12 +10397,12 @@ </remote-system> <statistics> <transmit> - <frames>483072</frames> + <frames>513992</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>2</age-outs> - <frames>489376</frames> + <frames>520297</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> @@ -10451,19 +10551,19 @@ <last-cleared-time>2024-08-13T09:22:46.7Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>3529990810819018</in-octets> - <in-packets>3078837346722</in-packets> + <in-octets>3778408773113248</in-octets> + <in-packets>3295716747437</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>12270</in-broadcast-packets> - <in-multicast-packets>23160955</in-multicast-packets> - <in-unicast-packets>3078814173497</in-unicast-packets> + <in-broadcast-packets>13042</in-broadcast-packets> + <in-multicast-packets>24624114</in-multicast-packets> + <in-unicast-packets>3295692110281</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>835808779667061</out-octets> - <out-packets>814903357776</out-packets> + <out-octets>881580503101950</out-octets> + <out-packets>859737107867</out-packets> <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>388581216430</out-multicast-packets> - <out-unicast-packets>426322141344</out-unicast-packets> + <out-multicast-packets>407484095800</out-multicast-packets> + <out-unicast-packets>452253012065</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -10537,18 +10637,18 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>12270</in-broadcast-packets> - <in-multicast-packets>23160955</in-multicast-packets> - <in-unicast-packets>3078814173497</in-unicast-packets> + <in-broadcast-packets>13042</in-broadcast-packets> + <in-multicast-packets>24624114</in-multicast-packets> + <in-unicast-packets>3295692110281</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>3529990810819018</in-octets> - <in-utilization>60</in-utilization> + <in-octets>3778408773113248</in-octets> + <in-utilization>64</in-utilization> <out-broadcast-packets>2</out-broadcast-packets> - <out-multicast-packets>388581216430</out-multicast-packets> - <out-unicast-packets>426322141344</out-unicast-packets> + <out-multicast-packets>407484095800</out-multicast-packets> + <out-unicast-packets>452253012065</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>835808779667061</out-octets> - <out-utilization>11</out-utilization> + <out-octets>881580503101950</out-octets> + <out-utilization>23</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -10556,10 +10656,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>12272</total-broadcast-packets> - <total-multicast-packets>388604377385</total-multicast-packets> - <total-octets>4365799590486079</total-octets> - <total-packets>3893740704498</total-packets> + <total-broadcast-packets>13044</total-broadcast-packets> + <total-multicast-packets>407508719914</total-multicast-packets> + <total-octets>4659989276215198</total-octets> + <total-packets>4155453855304</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -10582,13 +10682,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>27003691014</octets-64> - <octets-65-to-127>161152197501</octets-65-to-127> - <octets-128-to-255>280946069074</octets-128-to-255> - <octets-256-to-511>310619233349</octets-256-to-511> - <octets-512-to-1023>16527466899</octets-512-to-1023> - <octets-1024-to-1518>2741367600555</octets-1024-to-1518> - <octets-1519-to-max>356124446106</octets-1519-to-max> + <octets-64>29348412504</octets-64> + <octets-65-to-127>170224509527</octets-65-to-127> + <octets-128-to-255>300995835715</octets-128-to-255> + <octets-256-to-511>329276167860</octets-256-to-511> + <octets-512-to-1023>17822789988</octets-512-to-1023> + <octets-1024-to-1518>2942752782904</octets-1024-to-1518> + <octets-1519-to-max>365033356806</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -10664,7 +10764,7 @@ <remote-system> <remote-time-mark>957183051</remote-time-mark> <remote-index>3</remote-index> - <age>14707866</age> + <age>15635473</age> <chassis-id>A8:D0:E5:F7:5F:C0</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>et-3/0/4</remote-port-id> @@ -10684,16 +10784,16 @@ </remote-system> <statistics> <transmit> - <frames>490267</frames> + <frames>521187</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>0</age-outs> - <frames>530029</frames> + <frames>563457</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2120116</tlv-unknown> + <tlv-unknown>2253828</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -30634,19 +30734,19 @@ <last-cleared-time>2024-08-13T09:22:46.7Z</last-cleared-time> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>3512516200919400</in-octets> - <in-packets>3078571805378</in-packets> + <in-octets>3763315447293077</in-octets> + <in-packets>3296970737791</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>16147689</in-multicast-packets> - <in-unicast-packets>3078555657689</in-unicast-packets> + <in-multicast-packets>17108637</in-multicast-packets> + <in-unicast-packets>3296953629154</in-unicast-packets> <out-discards>0</out-discards> <out-errors>0</out-errors> - <out-octets>740331004308293</out-octets> - <out-packets>728779299625</out-packets> + <out-octets>794797292117221</out-octets> + <out-packets>779742197474</out-packets> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>310966444059</out-multicast-packets> - <out-unicast-packets>417812855566</out-unicast-packets> + <out-multicast-packets>335937900779</out-multicast-packets> + <out-unicast-packets>443804296695</out-unicast-packets> <egress-queue> <queue> <queue-id>1</queue-id> @@ -30721,17 +30821,17 @@ </ssm> <statistics> <in-broadcast-packets>0</in-broadcast-packets> - <in-multicast-packets>16147689</in-multicast-packets> - <in-unicast-packets>3078555657689</in-unicast-packets> + <in-multicast-packets>17108637</in-multicast-packets> + <in-unicast-packets>3296953629154</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>3512516200919400</in-octets> + <in-octets>3763315447293077</in-octets> <in-utilization>64</in-utilization> <out-broadcast-packets>0</out-broadcast-packets> - <out-multicast-packets>310966444059</out-multicast-packets> - <out-unicast-packets>417812855566</out-unicast-packets> + <out-multicast-packets>335937900779</out-multicast-packets> + <out-unicast-packets>443804296695</out-unicast-packets> <out-errors>0</out-errors> - <out-octets>740331004308293</out-octets> - <out-utilization>8</out-utilization> + <out-octets>794797292117221</out-octets> + <out-utilization>19</out-utilization> <collisions>0</collisions> <crc-align-errors>0</crc-align-errors> <drop-events>0</drop-events> @@ -30740,9 +30840,9 @@ <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> <total-broadcast-packets>0</total-broadcast-packets> - <total-multicast-packets>310982591748</total-multicast-packets> - <total-octets>4252847205227693</total-octets> - <total-packets>3807351105003</total-packets> + <total-multicast-packets>335955009416</total-multicast-packets> + <total-octets>4558112739410298</total-octets> + <total-packets>4076712935265</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -30765,13 +30865,13 @@ </pause> </ethernet-like-medium> <packet-size> - <octets-64>27605678251</octets-64> - <octets-65-to-127>168214857756</octets-65-to-127> - <octets-128-to-255>279928180382</octets-128-to-255> - <octets-256-to-511>303288877843</octets-256-to-511> - <octets-512-to-1023>16621308755</octets-512-to-1023> - <octets-1024-to-1518>2656432430915</octets-1024-to-1518> - <octets-1519-to-max>355259771101</octets-1519-to-max> + <octets-64>30287449629</octets-64> + <octets-65-to-127>177322006019</octets-65-to-127> + <octets-128-to-255>297812853034</octets-128-to-255> + <octets-256-to-511>322781628292</octets-256-to-511> + <octets-512-to-1023>17900392531</octets-512-to-1023> + <octets-1024-to-1518>2866158055421</octets-1024-to-1518> + <octets-1519-to-max>364450550339</octets-1519-to-max> </packet-size> </statistics> <symbol-monitor> @@ -30847,7 +30947,7 @@ <remote-system> <remote-time-mark>957183002</remote-time-mark> <remote-index>3</remote-index> - <age>14707870</age> + <age>15635479</age> <chassis-id>A8:D0:E5:F7:5F:C0</chassis-id> <chassis-id-subtype>mac-address</chassis-id-subtype> <remote-port-id>et-3/1/4</remote-port-id> @@ -30867,16 +30967,16 @@ </remote-system> <statistics> <transmit> - <frames>490267</frames> + <frames>521187</frames> <length-error-frames>0</length-error-frames> </transmit> <receive> <age-outs>0</age-outs> - <frames>529906</frames> + <frames>563338</frames> <frame-discards>0</frame-discards> <frame-errors>0</frame-errors> <tlv-discards>0</tlv-discards> - <tlv-unknown>2119624</tlv-unknown> + <tlv-unknown>2253352</tlv-unknown> </receive> </statistics> <tx-mgmt-address> @@ -42659,10 +42759,10 @@ <statistics> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>2034636</in-octets> - <in-packets>31790</in-packets> + <in-octets>2133260</in-octets> + <in-packets>33331</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>31786</in-broadcast-packets> + <in-broadcast-packets>33327</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>4</in-unicast-packets> <out-discards>0</out-discards> @@ -42700,11 +42800,11 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>31786</in-broadcast-packets> + <in-broadcast-packets>33327</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>4</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>2034636</in-octets> + <in-octets>2133260</in-octets> <in-utilization>0</in-utilization> <out-broadcast-packets>14</out-broadcast-packets> <out-multicast-packets>0</out-multicast-packets> @@ -42719,10 +42819,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>31800</total-broadcast-packets> + <total-broadcast-packets>33341</total-broadcast-packets> <total-multicast-packets>0</total-multicast-packets> - <total-octets>2035800</total-octets> - <total-packets>31807</total-packets> + <total-octets>2134424</total-octets> + <total-packets>33348</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -42741,7 +42841,7 @@ </error> </ethernet-like-medium> <packet-size> - <octets-64>31803</octets-64> + <octets-64>33344</octets-64> <octets-65-to-127>4</octets-65-to-127> <octets-128-to-255>0</octets-128-to-255> <octets-256-to-511>0</octets-256-to-511> @@ -43065,10 +43165,10 @@ <statistics> <in-discards>0</in-discards> <in-errors>0</in-errors> - <in-octets>2034022</in-octets> - <in-packets>31781</in-packets> + <in-octets>2132646</in-octets> + <in-packets>33322</in-packets> <in-unknown-protocol-discards>0</in-unknown-protocol-discards> - <in-broadcast-packets>31779</in-broadcast-packets> + <in-broadcast-packets>33320</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>2</in-unicast-packets> <out-discards>0</out-discards> @@ -43106,11 +43206,11 @@ <transmitted-quality-level>reserved0</transmitted-quality-level> </ssm> <statistics> - <in-broadcast-packets>31779</in-broadcast-packets> + <in-broadcast-packets>33320</in-broadcast-packets> <in-multicast-packets>0</in-multicast-packets> <in-unicast-packets>2</in-unicast-packets> <in-errors>0</in-errors> - <in-octets>2034022</in-octets> + <in-octets>2132646</in-octets> <in-utilization>0</in-utilization> <out-broadcast-packets>6</out-broadcast-packets> <out-multicast-packets>0</out-multicast-packets> @@ -43125,10 +43225,10 @@ <jabbers>0</jabbers> <oversize-packets>0</oversize-packets> <undersize-packets>0</undersize-packets> - <total-broadcast-packets>31785</total-broadcast-packets> + <total-broadcast-packets>33326</total-broadcast-packets> <total-multicast-packets>0</total-multicast-packets> - <total-octets>2034508</total-octets> - <total-packets>31788</total-packets> + <total-octets>2133132</total-octets> + <total-packets>33329</total-packets> <ethernet-like-medium> <frame-too-long>0</frame-too-long> <collision> @@ -43147,7 +43247,7 @@ </error> </ethernet-like-medium> <packet-size> - <octets-64>31786</octets-64> + <octets-64>33327</octets-64> <octets-65-to-127>2</octets-65-to-127> <octets-128-to-255>0</octets-128-to-255> <octets-256-to-511>0</octets-256-to-511> @@ -43466,6 +43566,2876 @@ </dot1x> </ethernet> </port> + <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-24T08:35:14.1Z</last-oper-change> + <statistics> + <ip> + <out-packets>0</out-packets> + <out-octets>0</out-octets> + <out-discard-packets>61944499</out-discard-packets> + <out-discard-octets>5402090606</out-discard-octets> + <in-packets>7</in-packets> + <in-octets>636</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>7</icmp-in-msgs> + <icmp-in-errors>7</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>7</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>44</icmp-out-msgs> + <icmp-out-errors>44</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>44</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>61944499</out-discard-packets> + <out-discard-octets>5402090606</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.25</oper-address> + <creation-origin>manual</creation-origin> + </primary> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>625</icmp6-in-msgs> + <icmp6-in-errors>625</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>625</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>625</icmp6-out-msgs> + <icmp6-out-errors>625</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>625</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> + <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::b</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:aa:1::b</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-1.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-08-13T09:22:48.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>0</total-exceed-count> + <exit-conform-state-count>0</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>1101996900772</out-packets> + <out-octets>1186744959137256</out-octets> + <out-discard-packets>3311247</out-discard-packets> + <out-discard-octets>283053224</out-discard-octets> + <in-packets>150720932</in-packets> + <in-octets>17729739827</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>537444724453</out-packets> + <out-octets>489625316621287</out-octets> + <in-packets>5299327876566</in-packets> + <in-octets>6486800346341468</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>564047</icmp-in-msgs> + <icmp-in-errors>3037</icmp-in-errors> + <icmp-in-dest-unreachables>3014</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>353342</icmp-in-echos> + <icmp-in-echo-replies>323</icmp-in-echo-replies> + <icmp-in-time-exceeds>23</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>207345</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>247510556</icmp-out-msgs> + <icmp-out-errors>239599426</icmp-out-errors> + <icmp-out-dest-unreachables>531</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>17810</icmp-out-echos> + <icmp-out-echo-replies>7893320</icmp-out-echo-replies> + <icmp-out-time-exceeds>239598895</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>3311280</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>1056199688683</out-packets> + <out-octets>1141923137849726</out-octets> + <out-discard-packets>3311247</out-discard-packets> + <out-discard-octets>283053224</out-discard-octets> + <in-packets>1285208994559</in-packets> + <in-octets>1051883556300970</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.62</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.98.63</ipv4-address> + <oper-state>up</oper-state> + <mac-address>a8:d0:e5:f7:5f:ce</mac-address> + <type>dynamic</type> + <timer>13158</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>930618</icmp6-in-msgs> + <icmp6-in-errors>91</icmp6-in-errors> + <icmp6-in-dest-unreachables>17</icmp6-in-dest-unreachables> + <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> + <icmp6-in-time-exceeds>72</icmp6-in-time-exceeds> + <icmp6-in-parm-problems>0</icmp6-in-parm-problems> + <icmp6-in-pkt-too-bigs>2</icmp6-in-pkt-too-bigs> + <icmp6-in-echos>19752</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>27821</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>882930</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>39826233</icmp6-out-msgs> + <icmp6-out-errors>36367756</icmp6-out-errors> + <icmp6-out-dest-unreachables>10817</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>36356939</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>2547309</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>883347</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>27821</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>1094934</icmp6-out-discards> + </statistics> + </icmp6> + <link-local-address> + <oper-address>fe80::82b9:46ff:fef2:2271</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>45797212089</out-packets> + <out-octets>44821821287530</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>7137114474</in-packets> + <in-octets>2714391872493</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::69</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:cc::69</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:cc::6a</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>a8:d0:e5:f7:5f:ce</mac-address> + <type>dynamic</type> + <timer>19</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::aad0:e5ff:fef7:5fce</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>a8:d0:e5:f7:5f:ce</mac-address> + <type>dynamic</type> + <timer>21</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-2.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>2025-02-03T14:57:33.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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>1075311281695</out-packets> + <out-octets>995720895463740</out-octets> + <out-discard-packets>175546779</out-discard-packets> + <out-discard-octets>49357533256</out-discard-octets> + <in-packets>1431941583</in-packets> + <in-octets>172766204258</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>125537699451177</out-packets> + <out-octets>153976612117698688</out-octets> + <in-packets>94090550263260</in-packets> + <in-octets>107914548314516816</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>22921386</icmp-in-msgs> + <icmp-in-errors>634416</icmp-in-errors> + <icmp-in-dest-unreachables>633824</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>17257618</icmp-in-echos> + <icmp-in-echo-replies>878</icmp-in-echo-replies> + <icmp-in-time-exceeds>592</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>5028472</icmp-in-timestamps> + <icmp-in-timestamp-replies>2</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>669394652</icmp-out-msgs> + <icmp-out-errors>654390072</icmp-out-errors> + <icmp-out-dest-unreachables>94</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>12150</icmp-out-echos> + <icmp-out-echo-replies>14992430</icmp-out-echo-replies> + <icmp-out-time-exceeds>654389978</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>232890945</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>1070823444124</out-packets> + <out-octets>994649617141338</out-octets> + <out-discard-packets>172298919</out-discard-packets> + <out-discard-octets>20128338536</out-discard-octets> + <in-packets>886247075272</in-packets> + <in-octets>1002973813076994</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.65</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.98.64</ipv4-address> + <oper-state>up</oper-state> + <mac-address>80:b9:46:f2:0e:72</mac-address> + <type>dynamic</type> + <timer>7348</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>7958339</icmp6-in-msgs> + <icmp6-in-errors>4820</icmp6-in-errors> + <icmp6-in-dest-unreachables>39</icmp6-in-dest-unreachables> + <icmp6-in-admin-prohibs>0</icmp6-in-admin-prohibs> + <icmp6-in-time-exceeds>4780</icmp6-in-time-exceeds> + <icmp6-in-parm-problems>0</icmp6-in-parm-problems> + <icmp6-in-pkt-too-bigs>1</icmp6-in-pkt-too-bigs> + <icmp6-in-echos>6820848</icmp6-in-echos> + <icmp6-in-echo-replies>10</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>569614</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>562996</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>92940352</icmp6-out-msgs> + <icmp6-out-errors>84539307</icmp6-out-errors> + <icmp6-out-dest-unreachables>508</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>84538777</icmp6-out-time-exceeds> + <icmp6-out-parm-problems>0</icmp6-out-parm-problems> + <icmp6-out-pkt-too-bigs>22</icmp6-out-pkt-too-bigs> + <icmp6-out-echos>10</icmp6-out-echos> + <icmp6-out-echo-replies>5481122</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>564141</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>569612</icmp6-out-nbr-advertisements> + <icmp6-out-redirects>1786160</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>41349291</icmp6-out-discards> + </statistics> + </icmp6> + <link-local-address> + <oper-address>fe80::82b9:46ff:fef2:2272</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>4487837571</out-packets> + <out-octets>1071278322402</out-octets> + <out-discard-packets>3247860</out-discard-packets> + <out-discard-octets>29229194720</out-discard-octets> + <in-packets>26470601667</in-packets> + <in-octets>22044242058597</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::2a</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:cc:1::2a</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:cc:1::29</ipv6-address> + <state>stale</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>80:b9:46:f2:0e:72</mac-address> + <type>dynamic</type> + <timer>14388</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::82b9:46ff:fef2:e72</ipv6-address> + <state>delay</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>80:b9:46:f2:0e:72</mac-address> + <type>dynamic</type> + <timer>1</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-8.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-09-10T08:12:08.2Z</last-oper-change> + <distributed-cpu-protection> + <static-policer> + <name>ICMP_LIMIT</name> + <card>1</card> + <fp-number>2</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>1135929499630</out-packets> + <out-octets>1164437964585836</out-octets> + <out-discard-packets>1716792</out-discard-packets> + <out-discard-octets>14965489605</out-discard-octets> + <in-packets>638655364</in-packets> + <in-octets>88344568258</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>93101921598783</out-packets> + <out-octets>107306866959483867</out-octets> + <in-packets>119936053153103</in-packets> + <in-octets>146831026257370201</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>9970423</icmp-in-msgs> + <icmp-in-errors>87330</icmp-in-errors> + <icmp-in-dest-unreachables>86408</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>7397494</icmp-in-echos> + <icmp-in-echo-replies>150</icmp-in-echo-replies> + <icmp-in-time-exceeds>922</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>2485449</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>165635833</icmp-out-msgs> + <icmp-out-errors>163186112</icmp-out-errors> + <icmp-out-dest-unreachables>3587</icmp-out-dest-unreachables> + <icmp-out-redirects>7513</icmp-out-redirects> + <icmp-out-echos>209139</icmp-out-echos> + <icmp-out-echo-replies>2233069</icmp-out-echo-replies> + <icmp-out-time-exceeds>163182525</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>655144</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>630911483300</out-packets> + <out-octets>500546437069999</out-octets> + <out-discard-packets>701248</out-discard-packets> + <out-discard-octets>5825918692</out-discard-octets> + <in-packets>136494990504</in-packets> + <in-octets>65883135909248</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.106</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.98.107</ipv4-address> + <oper-state>up</oper-state> + <mac-address>00:31:26:69:df:80</mac-address> + <type>dynamic</type> + <timer>11617</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>2631050</icmp6-in-msgs> + <icmp6-in-errors>198364</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>198340</icmp6-in-time-exceeds> + <icmp6-in-parm-problems>0</icmp6-in-parm-problems> + <icmp6-in-pkt-too-bigs>24</icmp6-in-pkt-too-bigs> + <icmp6-in-echos>1189870</icmp6-in-echos> + <icmp6-in-echo-replies>10</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>564837</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>659305</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>27187312</icmp6-out-msgs> + <icmp6-out-errors>25951665</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>25951661</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>10</icmp6-out-echos> + <icmp6-out-echo-replies>4830</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>665970</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>564837</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>125763</icmp6-out-discards> + </statistics> + </icmp6> + <link-local-address> + <oper-address>fe80::82b9:46ff:fef2:2278</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>505018016330</out-packets> + <out-octets>663891527515837</out-octets> + <out-discard-packets>1015544</out-discard-packets> + <out-discard-octets>9139570913</out-discard-octets> + <in-packets>12090861117</in-packets> + <in-octets>11453723217893</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::b9</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:cc:1::b9</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:cc:1::ba</ipv6-address> + <state>delay</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>00:31:26:69:df:80</mac-address> + <type>dynamic</type> + <timer>4</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::231:26ff:fe69:df80</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>00:31:26:69:df:80</mac-address> + <type>dynamic</type> + <timer>6</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-6.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>2025-02-03T12:20:50.7Z</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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>3096828488</out-packets> + <out-octets>1520174888814</out-octets> + <out-discard-packets>15</out-discard-packets> + <out-discard-octets>1220</out-discard-octets> + <in-packets>25722844</in-packets> + <in-octets>4136362390</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>14587188051</out-packets> + <out-octets>13488827103242</out-octets> + <in-packets>24561360830</in-packets> + <in-octets>12901998147166</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>417141</icmp-in-msgs> + <icmp-in-errors>9</icmp-in-errors> + <icmp-in-dest-unreachables>3</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>1347</icmp-in-echos> + <icmp-in-echo-replies>11</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>415774</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>195858</icmp-out-msgs> + <icmp-out-errors>194234</icmp-out-errors> + <icmp-out-dest-unreachables>155</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>314</icmp-out-echos> + <icmp-out-echo-replies>1310</icmp-out-echo-replies> + <icmp-out-time-exceeds>194079</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>2759126281</out-packets> + <out-octets>1485068027821</out-octets> + <out-discard-packets>15</out-discard-packets> + <out-discard-octets>1220</out-discard-octets> + <in-packets>820811365</in-packets> + <in-octets>136595658235</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.19</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.98.18</ipv4-address> + <oper-state>up</oper-state> + <mac-address>e4:5d:37:87:11:70</mac-address> + <type>dynamic</type> + <timer>13065</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>473697</icmp6-in-msgs> + <icmp6-in-errors>5</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>5</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>12308</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>461384</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>540974</icmp6-out-msgs> + <icmp6-out-errors>66253</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>66253</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>462413</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>12308</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:fef2:2276</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>337702207</out-packets> + <out-octets>35106860993</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::16</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:cc::16</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:cc::15</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>e4:5d:37:87:11:70</mac-address> + <type>dynamic</type> + <timer>14356</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::e65d:37ff:fe87:1170</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>e4:5d:37:87:11:70</mac-address> + <type>dynamic</type> + <timer>18</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>2024-06-24T08:48:05.7Z</last-oper-change> + <statistics> + <ip> + <out-packets>2</out-packets> + <out-octets>168</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>8</in-packets> + <in-octets>556</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>2</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>2</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>2</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>2</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> + <service> + <ies> + <service-name>GEANT_GLOBAL</service-name> + <interface> + <interface-name>lag-20.1</interface-name> + <if-index>6</if-index> + <system-if-index>257</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol>pim</protocol> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2025-01-28T17:08:21.2Z</last-oper-change> + <sap> + <sap-id>lag-20:1</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>7230420</dropped-packets> + <dropped-octets>4246719258</dropped-octets> + <received-valid-packets>4175891249902</received-valid-packets> + <received-valid-octets>5952394908914251</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>4175866993661</low-priority-offered-packets> + <low-priority-offered-octets>5952430364339007</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>4175866993661</aggregate-offered-packets> + <aggregate-offered-octets>5952430364339007</aggregate-offered-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>2464233</cpm-packets> + <cpm-octets>228012663</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>4175866993470</out-profile-forwarded-packets> + <out-profile-forwarded-octets>5952430364075792</out-profile-forwarded-octets> + <aggregate-forwarded-packets>4175866993470</aggregate-forwarded-packets> + <aggregate-forwarded-octets>5952430364075792</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>4175854259632</low-priority-offered-packets> + <low-priority-offered-octets>5952412683669064</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>4175854259533</out-profile-forwarded-packets> + <out-profile-forwarded-octets>5952412683522612</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <multipoint-priority> + <combined-offered-packets>0</combined-offered-packets> + <combined-offered-octets>0</combined-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>0</out-profile-forwarded-packets> + <out-profile-forwarded-octets>0</out-profile-forwarded-octets> + </multipoint-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>3901521922</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>4687462508879</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>3958174988963</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>5371254665953646</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>3962076510885</aggregate-forwarded-packets> + <aggregate-forwarded-octets>5375942128462525</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c11/1</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c11/2</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c12/1</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c12/2</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>3901518353</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>4687458295806</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>3958161487218</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>5371233395419198</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>491276</icmp-in-msgs> + <icmp-in-errors>38</icmp-in-errors> + <icmp-in-dest-unreachables>0</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>490227</icmp-in-echos> + <icmp-in-echo-replies>1011</icmp-in-echo-replies> + <icmp-in-time-exceeds>38</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>2831181</icmp-out-msgs> + <icmp-out-errors>2370144</icmp-out-errors> + <icmp-out-dest-unreachables>1394139</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>1782</icmp-out-echos> + <icmp-out-echo-replies>459255</icmp-out-echo-replies> + <icmp-out-time-exceeds>976005</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>25819</icmp-out-discards> + </statistics> + </icmp> + <primary> + <oper-address>62.40.125.57</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.125.58</ipv4-address> + <oper-state>up</oper-state> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>14240</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>2216965947953</out-packets> + <out-octets>2977062448102462</out-octets> + <out-discard-packets>25819</out-discard-packets> + <out-discard-octets>2953070</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> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>91831</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>46208</icmp6-in-echos> + <icmp6-in-echo-replies>1005</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>3701</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>32050</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>4517673</icmp6-out-msgs> + <icmp6-out-errors>4437578</icmp6-out-errors> + <icmp6-out-dest-unreachables>121</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>780849</icmp6-out-time-exceeds> + <icmp6-out-parm-problems>0</icmp6-out-parm-problems> + <icmp6-out-pkt-too-bigs>3656608</icmp6-out-pkt-too-bigs> + <icmp6-out-echos>1005</icmp6-out-echos> + <icmp6-out-echo-replies>43310</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>32079</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>3701</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>712193</icmp6-out-discards> + </statistics> + </icmp6> + <link-local-address> + <oper-address>fe80::82b9:46ff:fef2:2130</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:99:1::7d</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:99:1::7d</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:99:1::7e</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>5</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::564b:8c00:18a:8411</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>13416</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>1745089776203</out-packets> + <out-octets>2398845731044851</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> + </ipv6> + <statistics> + <ip> + <out-packets>3962055724156</out-packets> + <out-octets>5375908179147313</out-octets> + <out-discard-packets>25819</out-discard-packets> + <out-discard-octets>2953070</out-discard-octets> + <in-packets>4175871192040</in-packets> + <in-octets>5952433001736416</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </ies> + <vprn> + <service-name>LHCONE_L3VPN</service-name> + <interface> + <interface-name>lag-20.111</interface-name> + <if-index>7</if-index> + <system-if-index>258</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2025-01-28T17:08:21.2Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>1007</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>2</icmp-in-echos> + <icmp-in-echo-replies>1005</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>1007</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>1005</icmp-out-echos> + <icmp-out-echo-replies>2</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>62.40.126.72</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.126.73</ipv4-address> + <oper-state>up</oper-state> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>14159</timer> + </neighbor> + </neighbor-discovery> + <dhcp> + <lease-populate> + <current-lease-states>0</current-lease-states> + </lease-populate> + <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> + <proxied> + <radius>0</radius> + <lease-split>0</lease-split> + </proxied> + </client-packets> + <server-packets> + <dropped>0</dropped> + <relayed>0</relayed> + <snooped>0</snooped> + </server-packets> + <spoofed-packets> + <release>0</release> + <force-renews>0</force-renews> + </spoofed-packets> + </statistics> + </dhcp> + <statistics> + <out-packets>41663788194</out-packets> + <out-octets>53540354614261</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> + </ipv4> + <sap> + <sap-id>lag-20:111</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> + <statistics> + <authentication> + <discarded-packets>0</discarded-packets> + <success-packets>0</success-packets> + </authentication> + </statistics> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>440688</dropped-packets> + <dropped-octets>464844413</dropped-octets> + <received-valid-packets>2923421907020</received-valid-packets> + <received-valid-octets>4359950244868136</received-valid-octets> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>2923432741762</low-priority-offered-packets> + <low-priority-offered-octets>4359966256113202</low-priority-offered-octets> + <uncolor-offered-packets>0</uncolor-offered-packets> + <uncolor-offered-octets>0</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>2923432741762</aggregate-offered-packets> + <aggregate-offered-octets>4359966256113202</aggregate-offered-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>189829</cpm-packets> + <cpm-octets>15162865</cpm-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>2923432741620</out-profile-forwarded-packets> + <out-profile-forwarded-octets>4359966255981350</out-profile-forwarded-octets> + <aggregate-forwarded-packets>2923432741620</aggregate-forwarded-packets> + <aggregate-forwarded-octets>4359966255981350</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/1</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c11/2</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/1</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c12/2</source-port> + <dest-card>2</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>125829120</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + </hardware-queue> + <statistics> + <unicast-priority> + <high-priority-offered-packets>0</high-priority-offered-packets> + <high-priority-offered-octets>0</high-priority-offered-octets> + <low-priority-offered-packets>2923432741762</low-priority-offered-packets> + <low-priority-offered-octets>4359966256113202</low-priority-offered-octets> + <high-priority-dropped-packets>0</high-priority-dropped-packets> + <high-priority-dropped-octets>0</high-priority-dropped-octets> + <low-priority-dropped-packets>0</low-priority-dropped-packets> + <low-priority-dropped-octets>0</low-priority-dropped-octets> + <in-profile-forwarded-packets>0</in-profile-forwarded-packets> + <in-profile-forwarded-octets>0</in-profile-forwarded-octets> + <out-profile-forwarded-packets>2923432741620</out-profile-forwarded-packets> + <out-profile-forwarded-octets>4359966255981350</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <traffic-manager> + <statistics> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>1327141</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>441469837</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2354574832290</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>3215159551005404</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2354576159431</aggregate-forwarded-packets> + <aggregate-forwarded-octets>3215159992475241</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c11/1</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c11/2</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c12/1</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <hardware-queue> + <source-card>1</source-card> + <source-fp>2</source-fp> + <source-port>1/1/c12/2</source-port> + <adapted-admin-mbs>125829120</adapted-admin-mbs> + <exceed-droptail>99614720</exceed-droptail> + <high-droptail>125829120</high-droptail> + <high-plus-droptail>125829120</high-plus-droptail> + <low-droptail>112721920</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>125829120</operational-mbs> + <operational-pir>max</operational-pir> + <depth>0</depth> + <operational-exceed-burst>max</operational-exceed-burst> + <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> + <operational-burst-fir>0</operational-burst-fir> + <exceed-slope> + <current-probability>0</current-probability> + </exceed-slope> + <high-slope> + <current-probability>0</current-probability> + </high-slope> + <high-plus-slope> + <current-probability>0</current-probability> + </high-plus-slope> + <low-slope> + <current-probability>0</current-probability> + </low-slope> + </hardware-queue> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1327141</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>441469837</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2354574832290</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>3215159551005404</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> + <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + <lag> + <active-port/> + <per-link-hash-oper> + <class>1</class> + <weight>1</weight> + <is-overriden>false</is-overriden> + </per-link-hash-oper> + </lag> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>36905</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>2</icmp6-in-echos> + <icmp6-in-echo-replies>1005</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>3917</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>31981</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>36908</icmp6-out-msgs> + <icmp6-out-errors>1</icmp6-out-errors> + <icmp6-out-dest-unreachables>1</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>1005</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>31983</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>3917</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::7f:3932:e867:72ec</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:111:1::101</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:111:1::101</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <dhcp6> + <relay> + <oper-state>down</oper-state> + <current-lease-states>0</current-lease-states> + <server-lease-states>0</server-lease-states> + </relay> + <server> + <current-server-lease-states>0</current-server-lease-states> + </server> + </dhcp6> + <neighbor-discovery> + <neighbor> + <ipv6-address>2001:798:111:1::102</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>10</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::564b:8c00:6f8a:8411</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>56:4b:8c:8a:84:11</mac-address> + <type>dynamic</type> + <timer>13956</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>2312910652783</out-packets> + <out-octets>3161617308748554</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> + </ipv6> + <statistics> + <ip> + <out-packets>2354574440977</out-packets> + <out-octets>3215157663362815</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>2923435159288</in-packets> + <in-octets>4359969565601420</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + </statistics> + </interface> + </vprn> + </service> </state> </data> </rpc-reply> \ No newline at end of file diff --git a/test/interface_stats/data/rt0.lon2.uk.geant.net-vprns.xml b/test/interface_stats/data/rt0.lon2.uk.geant.net-vprns.xml deleted file mode 100644 index af72d97085e3b456fc7fc6feb2167b41b80dcfb1..0000000000000000000000000000000000000000 --- a/test/interface_stats/data/rt0.lon2.uk.geant.net-vprns.xml +++ /dev/null @@ -1,832 +0,0 @@ -<rpc-reply message-id="urn:uuid:33e001ec-4a1f-4a0e-b152-93fcd332bc86"> - <data> - <state> - <service> - <vprn> - <service-name>LHCONE_L3VPN</service-name> - <interface> - <interface-name>lag-20.111</interface-name> - <if-index>7</if-index> - <system-if-index>258</system-if-index> - <oper-state>up</oper-state> - <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> - <protocol/> - <oper-ip-mtu>9000</oper-ip-mtu> - <creation-origin>manual</creation-origin> - <last-oper-change>2025-01-28T17:08:21.2Z</last-oper-change> - <ipv4> - <oper-state>up</oper-state> - <icmp> - <statistics> - <icmp-in-msgs>1007</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>2</icmp-in-echos> - <icmp-in-echo-replies>1005</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>1007</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>1005</icmp-out-echos> - <icmp-out-echo-replies>2</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>62.40.126.72</oper-address> - <creation-origin>manual</creation-origin> - </primary> - <neighbor-discovery> - <neighbor> - <ipv4-address>62.40.126.73</ipv4-address> - <oper-state>up</oper-state> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>13489</timer> - </neighbor> - </neighbor-discovery> - <dhcp> - <lease-populate> - <current-lease-states>0</current-lease-states> - </lease-populate> - <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> - <proxied> - <radius>0</radius> - <lease-split>0</lease-split> - </proxied> - </client-packets> - <server-packets> - <dropped>0</dropped> - <relayed>0</relayed> - <snooped>0</snooped> - </server-packets> - <spoofed-packets> - <release>0</release> - <force-renews>0</force-renews> - </spoofed-packets> - </statistics> - </dhcp> - <statistics> - <out-packets>8163792936</out-packets> - <out-octets>10136398416198</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> - </ipv4> - <sap> - <sap-id>lag-20:111</sap-id> - <oper-state>up</oper-state> - <oper-flags/> - <mirror-state>disabled</mirror-state> - <template-used/> - <oper-dist-cpu-prot-policy>_default-access-policy</oper-dist-cpu-prot-policy> - <statistics> - <authentication> - <discarded-packets>0</discarded-packets> - <success-packets>0</success-packets> - </authentication> - </statistics> - <ingress> - <qos> - <sap-ingress> - <forwarding-engine> - <statistics> - <dropped-packets>47318</dropped-packets> - <dropped-octets>47481045</dropped-octets> - <received-valid-packets>210780045210</received-valid-packets> - <received-valid-octets>313143055741517</received-valid-octets> - <high-priority-offered-packets>0</high-priority-offered-packets> - <high-priority-offered-octets>0</high-priority-offered-octets> - <low-priority-offered-packets>210833743098</low-priority-offered-packets> - <low-priority-offered-octets>313223340129106</low-priority-offered-octets> - <uncolor-offered-packets>0</uncolor-offered-packets> - <uncolor-offered-octets>0</uncolor-offered-octets> - <managed-offered-packets>0</managed-offered-packets> - <managed-offered-octets>0</managed-offered-octets> - <aggregate-offered-packets>210833743098</aggregate-offered-packets> - <aggregate-offered-octets>313223340129106</aggregate-offered-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </forwarding-engine> - <traffic-manager> - <statistics> - <cpm-packets>32015</cpm-packets> - <cpm-octets>2691025</cpm-octets> - <high-priority-dropped-packets>0</high-priority-dropped-packets> - <high-priority-dropped-octets>0</high-priority-dropped-octets> - <low-priority-dropped-packets>0</low-priority-dropped-packets> - <low-priority-dropped-octets>0</low-priority-dropped-octets> - <in-profile-forwarded-packets>0</in-profile-forwarded-packets> - <in-profile-forwarded-octets>0</in-profile-forwarded-octets> - <out-profile-forwarded-packets>210833743077</out-profile-forwarded-packets> - <out-profile-forwarded-octets>313223340098572</out-profile-forwarded-octets> - <aggregate-forwarded-packets>210833743077</aggregate-forwarded-packets> - <aggregate-forwarded-octets>313223340098572</aggregate-forwarded-octets> - <aggregate-dropped-packets>0</aggregate-dropped-packets> - <aggregate-dropped-octets>0</aggregate-dropped-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </traffic-manager> - <queue> - <queue-id>1</queue-id> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/1</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c11/2</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/1</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>1</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>2</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>1920</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>1</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-tap-offset>1</source-tap-offset> - <source-port>1/1/c12/2</source-port> - <dest-card>2</dest-card> - <dest-fp>3</dest-fp> - <dest-tap-offset>1</dest-tap-offset> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <adapted-admin-cbs>0</adapted-admin-cbs> - <operational-mbs>125829120</operational-mbs> - <depth>0</depth> - <operational-cir>0</operational-cir> - <operational-fir>0</operational-fir> - <operational-pir>max</operational-pir> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - </hardware-queue> - <statistics> - <unicast-priority> - <high-priority-offered-packets>0</high-priority-offered-packets> - <high-priority-offered-octets>0</high-priority-offered-octets> - <low-priority-offered-packets>210833743098</low-priority-offered-packets> - <low-priority-offered-octets>313223340129106</low-priority-offered-octets> - <high-priority-dropped-packets>0</high-priority-dropped-packets> - <high-priority-dropped-octets>0</high-priority-dropped-octets> - <low-priority-dropped-packets>0</low-priority-dropped-packets> - <low-priority-dropped-octets>0</low-priority-dropped-octets> - <in-profile-forwarded-packets>0</in-profile-forwarded-packets> - <in-profile-forwarded-octets>0</in-profile-forwarded-octets> - <out-profile-forwarded-packets>210833743077</out-profile-forwarded-packets> - <out-profile-forwarded-octets>313223340098572</out-profile-forwarded-octets> - </unicast-priority> - </statistics> - </queue> - </sap-ingress> - </qos> - </ingress> - <egress> - <qos> - <sap-egress> - <traffic-manager> - <statistics> - <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> - <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> - <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> - <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> - <in-inplus-profile-forwarded-packets>148640</in-inplus-profile-forwarded-packets> - <in-inplus-profile-forwarded-octets>46437788</in-inplus-profile-forwarded-octets> - <out-exceed-profile-forwarded-packets>198592319950</out-exceed-profile-forwarded-packets> - <out-exceed-profile-forwarded-octets>293036371861155</out-exceed-profile-forwarded-octets> - <aggregate-forwarded-packets>198592468590</aggregate-forwarded-packets> - <aggregate-forwarded-octets>293036418298943</aggregate-forwarded-octets> - <aggregate-dropped-packets>0</aggregate-dropped-packets> - <aggregate-dropped-octets>0</aggregate-dropped-octets> - <last-cleared-time>2024-04-24T14:32:17.9Z</last-cleared-time> - </statistics> - </traffic-manager> - <queue> - <queue-id>1</queue-id> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c11/1</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c11/2</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c12/1</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <hardware-queue> - <source-card>1</source-card> - <source-fp>2</source-fp> - <source-port>1/1/c12/2</source-port> - <adapted-admin-mbs>125829120</adapted-admin-mbs> - <exceed-droptail>99614720</exceed-droptail> - <high-droptail>125829120</high-droptail> - <high-plus-droptail>125829120</high-plus-droptail> - <low-droptail>112721920</low-droptail> - <operational-cbs>0</operational-cbs> - <operational-cir>0</operational-cir> - <operational-mbs>125829120</operational-mbs> - <operational-pir>max</operational-pir> - <depth>0</depth> - <operational-exceed-burst>max</operational-exceed-burst> - <operational-max-transmit-data-size>20480</operational-max-transmit-data-size> - <operational-burst-fir>0</operational-burst-fir> - <exceed-slope> - <current-probability>0</current-probability> - </exceed-slope> - <high-slope> - <current-probability>0</current-probability> - </high-slope> - <high-plus-slope> - <current-probability>0</current-probability> - </high-plus-slope> - <low-slope> - <current-probability>0</current-probability> - </low-slope> - </hardware-queue> - <statistics> - <profile> - <in-inplus-profile-forwarded-packets>148640</in-inplus-profile-forwarded-packets> - <in-inplus-profile-forwarded-octets>46437788</in-inplus-profile-forwarded-octets> - <out-exceed-profile-forwarded-packets>198592319950</out-exceed-profile-forwarded-packets> - <out-exceed-profile-forwarded-octets>293036371861155</out-exceed-profile-forwarded-octets> - <in-inplus-profile-dropped-packets>0</in-inplus-profile-dropped-packets> - <in-inplus-profile-dropped-octets>0</in-inplus-profile-dropped-octets> - <out-exceed-profile-dropped-packets>0</out-exceed-profile-dropped-packets> - <out-exceed-profile-dropped-octets>0</out-exceed-profile-dropped-octets> - </profile> - </statistics> - </queue> - </sap-egress> - </qos> - </egress> - <lag> - <active-port/> - <per-link-hash-oper> - <class>1</class> - <weight>1</weight> - <is-overriden>false</is-overriden> - </per-link-hash-oper> - </lag> - </sap> - <ipv6> - <oper-state>up</oper-state> - <icmp6> - <statistics> - <icmp6-in-msgs>6386</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>2</icmp6-in-echos> - <icmp6-in-echo-replies>1005</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>644</icmp6-in-nbr-solicits> - <icmp6-in-nbr-advertisements>4735</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>6388</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>1005</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>4737</icmp6-out-nbr-solicits> - <icmp6-out-nbr-advertisements>644</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::7f:3932:e867:72ec</oper-address> - <address-state>preferred</address-state> - </link-local-address> - <address> - <ipv6-address>2001:798:111:1::101</ipv6-address> - <address-state>preferred</address-state> - <oper-address>2001:798:111:1::101</oper-address> - <creation-origin>manual</creation-origin> - <primary-preferred>true</primary-preferred> - </address> - <dhcp6> - <relay> - <oper-state>down</oper-state> - <current-lease-states>0</current-lease-states> - <server-lease-states>0</server-lease-states> - </relay> - <server> - <current-server-lease-states>0</current-server-lease-states> - </server> - </dhcp6> - <neighbor-discovery> - <neighbor> - <ipv6-address>2001:798:111:1::102</ipv6-address> - <state>reachable</state> - <is-router>true</is-router> - <mtu>9000</mtu> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>21</timer> - </neighbor> - <neighbor> - <ipv6-address>fe80::564b:8c00:6f8a:8411</ipv6-address> - <state>stale</state> - <is-router>false</is-router> - <mtu>9000</mtu> - <mac-address>56:4b:8c:8a:84:11</mac-address> - <type>dynamic</type> - <timer>13493</timer> - </neighbor> - </neighbor-discovery> - <statistics> - <out-packets>190411919977</out-packets> - <out-octets>282874766361809</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> - </ipv6> - <statistics> - <ip> - <out-packets>198575712913</out-packets> - <out-octets>293011164778007</out-octets> - <out-discard-packets>0</out-discard-packets> - <out-discard-octets>0</out-discard-octets> - <in-packets>210834065575</in-packets> - <in-octets>313223779563846</in-octets> - <urpf-check-fail-packets>0</urpf-check-fail-packets> - <urpf-check-fail-octets>0</urpf-check-fail-octets> - </ip> - </statistics> - </interface> - </vprn> - </service> - </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 169a09ac09e960ab9eb57ad80e802bf6901fe475..dc67dba552865a9545aa0ca28cfb163ff61952fe 100644 --- a/test/interface_stats/test_interface_stats.py +++ b/test/interface_stats/test_interface_stats.py @@ -24,6 +24,7 @@ def test_sanity_check_nokia_snapshot_data(all_nokia_routers): assert set(all_nokia_routers) == { "rt0.ams.nl.geant.net", "rt0.lon2.uk.geant.net", + "rt0.ath.gr.lab.office.geant.net", } diff --git a/test/interface_stats/test_nokia.py b/test/interface_stats/test_nokia.py index 1b368d17a3940704dad757ebc720d01c25e915cb..aae4622c37d5c67803ee5678b8c498206c25c5f8 100644 --- a/test/interface_stats/test_nokia.py +++ b/test/interface_stats/test_nokia.py @@ -16,7 +16,7 @@ def get_netconf(data_dir): return _get_netconf -NOKIA_PORT_XML = """\ +NOKIA_STATE_XML = """\ <rpc-reply> <data> <state> @@ -45,14 +45,6 @@ NOKIA_PORT_XML = """\ </statistics> </ethernet> </port> - </state> - </data> -</rpc-reply>""" - -NOKIA_LAG_XML = """\ -<rpc-reply> - <data> - <state> <lag> <lag-name>lag-1</lag-name> <oper-state>up</oper-state> @@ -67,14 +59,6 @@ NOKIA_LAG_XML = """\ <out-discards>8</out-discards> </statistics> </lag> - </state> - </data> -</rpc-reply>""" - -NOKIA_ROUTER_INTERFACE_XML = """ -<rpc-reply> - <data> - <state> <router> <interface> <interface-name>lag-1.0</interface-name> @@ -97,22 +81,62 @@ NOKIA_ROUTER_INTERFACE_XML = """ </ipv6> </interface> </router> + <service> + <epipe> + <sap> + <sap-id>lag-14:505.cp-400</sap-id> + <ingress> + <qos> + <sap-ingress> + <forwarding-engine> + <statistics> + <dropped-packets>21</dropped-packets> + <aggregate-offered-packets>23</aggregate-offered-packets> + <aggregate-offered-octets>24</aggregate-offered-octets> + </statistics> + </forwarding-engine> + </sap-ingress> + </qos> + </ingress> + <egress> + <qos> + <sap-egress> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets> + 25</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets> + 26</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets> + 27</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets> + 28</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets> + 29</in-inplus-profile-dropped-packets> + <out-exceed-profile-dropped-packets> + 30</out-exceed-profile-dropped-packets> + </profile> + </statistics> + </queue> + </sap-egress> + </qos> + </egress> + </sap> + </epipe> + </service> </state> </data> -</rpc-reply> -""" +</rpc-reply>""" -def nokia_docs_containing_every_field(): - return { - "port": etree.fromstring(NOKIA_PORT_XML), - "lag": etree.fromstring(NOKIA_LAG_XML), - "router-interface": etree.fromstring(NOKIA_ROUTER_INTERFACE_XML), - } +def nokia_doc_containing_every_field(): + return etree.fromstring(NOKIA_STATE_XML) def test_nokia_counters(): - result = list(nokia.interface_counters(nokia_docs_containing_every_field())) + result = list(nokia.interface_counters(nokia_doc_containing_every_field())) assert result == [ { "name": "1/1/c1", @@ -169,6 +193,19 @@ def test_nokia_counters(): "output_discards": 15, }, }, + { + "name": "lag-14:505.cp-400", + "brian": { + "ingressOctets": 24, + "ingressPackets": 23, + "egressOctets": 26 + 28, + "egressPackets": 25 + 27, + }, + "errors": { + "input_discards": 21, + "output_discards": 29 + 30, + }, + }, ] @@ -217,11 +254,23 @@ def test_validate_interface_counters_and_influx_points_for_all_nokia_routers( schemavalidate(point["fields"], common.ERROR_POINT_FIELDS_SCHEMA) -def test_processes_specific_interfaces(get_netconf, caplog): - doc = get_netconf("rt0.lon2.uk.geant.net") - interfaces = ["1/1/c1", "lag-1", "lag-1.0", "lag-20", "lag-20.1", "lag-20.111"] +@pytest.mark.parametrize( + "router, interfaces", + [ + ( + "rt0.lon2.uk.geant.net", + ["1/1/c1", "lag-1", "lag-1.0", "lag-20", "lag-20.1", "lag-20.111"], + ), + ( + "rt0.ath.gr.lab.office.geant.net", + ["lag-14:505.cp-400"], + ), + ], +) +def test_processes_specific_interfaces(router, interfaces, get_netconf, caplog): + doc = get_netconf(router) result = list(nokia.interface_counters(doc, interfaces=interfaces)) - assert len(result) == 6 + assert len(result) == len(interfaces) assert all(isinstance(i, dict) for i in result) assert not [r for r in caplog.records if r.levelname in ("ERROR", "WARNING")] @@ -253,46 +302,26 @@ class TestGetNokiaNetconf: nokia.get_netconf_interface_info(router_name, ssh_params={"some": "param"}) calls = mocked_connection().__enter__().get.call_args_list - assert len(calls) == 5 - - def _get_element_tags(call): - elems = call[1]["filter"].iter() - return [e.tag for e in elems] + assert len(calls) == 1 - assert _get_element_tags(calls[0]) == [ + filter_tags = [e.tag for e in calls[0][0][0].iter()] + assert filter_tags == [ "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", "{urn:nokia.com:sros:ns:yang:sr:state}interface", - ] - assert _get_element_tags(calls[3]) == [ - "filter", - "{urn:nokia.com:sros:ns:yang:sr:state}state", "{urn:nokia.com:sros:ns:yang:sr:state}service", "{urn:nokia.com:sros:ns:yang:sr:state}vprn", "{urn:nokia.com:sros:ns:yang:sr:state}interface", - ] - assert _get_element_tags(calls[4]) == [ - "filter", - "{urn:nokia.com:sros:ns:yang:sr:state}state", - "{urn:nokia.com:sros:ns:yang:sr:state}service", "{urn:nokia.com:sros:ns:yang:sr:state}ies", "{urn:nokia.com:sros:ns:yang:sr:state}interface", + "{urn:nokia.com:sros:ns:yang:sr:state}epipe", + "{urn:nokia.com:sros:ns:yang:sr:state}sap", ] def test_converts_rpc_response_to_xml(self): @@ -302,6 +331,4 @@ class TestGetNokiaNetconf: router_name, ssh_params={"some": "param"} ) - assert doc["port"].tag == "rpc-reply" - assert doc["lag"].tag == "rpc-reply" - assert doc["router-interface"].tag == "rpc-reply" + assert doc.tag == "rpc-reply"