diff --git a/brian_polling_manager/interface_stats/cli.py b/brian_polling_manager/interface_stats/cli.py index 44f09cf5178e17a0f3d75da726b6e2ca320a4400..62c4fd3bf504a9338ea918675e0a04e0bad27f5e 100644 --- a/brian_polling_manager/interface_stats/cli.py +++ b/brian_polling_manager/interface_stats/cli.py @@ -1,42 +1,29 @@ import enum import json -from logging import LogRecord import logging.config import sys from datetime import datetime -from typing import Any, Iterable, List, Optional, Collection +from logging import LogRecord +from typing import Any, Collection, Dict, Iterable, List import click import jsonschema from brian_polling_manager.influx import influx_client -from brian_polling_manager.interface_stats import vendors, config -from brian_polling_manager.interface_stats.vendors import Vendor from brian_polling_manager.inventory import ( + GWS_INDIRECT_SCHEMA, INVENTORY_INTERFACES_SCHEMA, load_inventory_json, ) -from lxml import etree + +from .common import PointGroup, RouterProcessor +from .juniper import JuniperRouterProcessor +from .nokia import NokiaRouterProcessor logger = logging.getLogger() DEFAULT_INTERFACES_URL = "/poller/interfaces/" -class PointGroup(enum.Enum): - BRIAN = ("brian", "brian-counters", vendors.brian_points) - ERRORS = ("error", "error-counters", vendors.error_points) - - def config_params(self, app_params: dict): - return app_params[self.value[1]] - - @property - def points(self): - return self.value[2] - - def __str__(self): - return self.value[0] - - def write_points_to_influx( points: Iterable[dict], influx_params: dict, @@ -113,91 +100,75 @@ def setup_logging(debug=False) -> MessageCounter: def load_interfaces( - router_fqdn: str, interfaces: Any, app_config_params: dict, point_group: PointGroup -): + router_fqdn: str, + interfaces: Any, + point_group: PointGroup, + config: dict, +) -> Dict[str, dict]: # if we choose to write points for all interfaces and we have provided inventory # provider hosts, we make a selection based on the interfaces. Otherwise we write # points for all interfaces we find on the router if interfaces is not ALL_: - return interfaces - - inprov_hosts = app_config_params.get("inventory") - params = point_group.config_params(app_config_params) - if inprov_hosts is not None: - return _get_interfaces_for_router( - router_fqdn, - inprov_hosts=inprov_hosts, - url=params.get("inventory-url", DEFAULT_INTERFACES_URL), - ) - return None + return {ifc: {} for ifc in interfaces} + + inprov_hosts = config["inventory"] + params = point_group.get_config(config) + return _get_interfaces_for_router( + router_fqdn, + inprov_hosts=inprov_hosts, + url=params.get("inventory-url", DEFAULT_INTERFACES_URL), + point_group=point_group, + ) def _get_interfaces_for_router( - router: str, inprov_hosts: List[str], url: str -) -> List[str]: + router: str, inprov_hosts: List[str], url: str, point_group: PointGroup +) -> Dict[str, dict]: logger.info( f"Fetching interfaces from inventory provider: {inprov_hosts} using url '{url}'" ) - - all_interfaces = [ - ifc["name"] - for ifc in load_inventory_json(url, inprov_hosts, INVENTORY_INTERFACES_SCHEMA) - if ifc["router"] == router - ] - - if not all_interfaces: - raise click.ClickException(f"No interfaces found for router {router}") + if point_group == PointGroup.GWS_INDIRECT: + all_interfaces = { + ifc["interface"]: ifc + for ifc in load_inventory_json(url, inprov_hosts, GWS_INDIRECT_SCHEMA) + if ifc["hostname"] == router + } + else: + all_interfaces = { + ifc["name"]: ifc + for ifc in load_inventory_json( + url, inprov_hosts, INVENTORY_INTERFACES_SCHEMA + ) + if ifc["router"] == router + } return all_interfaces def process_router( - router_fqdn: str, - vendor: Vendor, - document: Any, + processor: RouterProcessor, + point_group: PointGroup, + interfaces: Dict[str, dict], timestamp: datetime, - interfaces: Optional[List[str]], - app_config_params: dict, output: OutputMethod, - point_group: PointGroup, ): - influx_params = point_group.config_params(app_config_params)["influx"] + influx_params = processor.group_config(point_group)["influx"] points = list( - _points( - router_fqdn=router_fqdn, - netconf_doc=document, - interfaces=interfaces, - timestamp=timestamp, - measurement_name=influx_params["measurement"], - vendor=vendor, - point_group=point_group, + processor.points( + point_group=point_group, timestamp=timestamp, interfaces=interfaces ) ) - _log_interface_points_sorted(points, point_kind=str(point_group)) + _log_interface_points_sorted(points, point_group=point_group) output.write_points(points, influx_params=influx_params) -def _points( - router_fqdn: str, - netconf_doc: etree.Element, - interfaces: Optional[List[str]], - timestamp: datetime, - measurement_name: str, - vendor: Vendor, - point_group: PointGroup, -): - counters = vendor.interface_counters(netconf_doc, interfaces=interfaces) - yield from point_group.points(router_fqdn, counters, timestamp, measurement_name) - - -def _log_interface_points_sorted(points: Collection[dict], point_kind=""): +def _log_interface_points_sorted(points: Collection[dict], point_group: PointGroup): N_COLUMNS = 5 num_points = len(points) - point_kind = point_kind + " " if point_kind else "" semicolon = ":" if num_points else "" - logger.info(f"Found {point_kind}points for {num_points} interfaces{semicolon}") + logger.info(f"Found {point_group} points for {num_points} interfaces{semicolon}") if not points: return @@ -214,44 +185,47 @@ ALL_ = object() def main( - app_config_params: dict, - router_fqdn: str, - vendor: Vendor, - output: OutputMethod = OutputMethod.INFLUX, + processor: RouterProcessor, interfaces=ALL_, + output: OutputMethod = OutputMethod.INFLUX, ): - vendor_str = str(vendor) - logger.info(f"Processing {vendor_str.capitalize()} router {router_fqdn}") + logger.info( + f"Processing {processor.name.capitalize()} router {processor.router_fqdn}" + ) - if not app_config_params.get(vendor_str): - raise ValueError(f"'{vendor_str}' ssh params are required") - ssh_params = vendor.config_params(app_config_params) - netconf = vendor.get_netconf(router_name=router_fqdn, ssh_params=ssh_params) timestamp = datetime.now() - for point_group in PointGroup: - logger.info(f"Processing {str(point_group).capitalize()} points...") + for point_group in processor.supported_point_groups: + logger.info(f"Processing {str(point_group).upper()} points...") - check_interfaces = load_interfaces( - router_fqdn=router_fqdn, - interfaces=interfaces, - app_config_params=app_config_params, - point_group=point_group, - ) + inventory = processor.config.get("inventory") + + check_interfaces = None + if inventory is not None: + check_interfaces = load_interfaces( + router_fqdn=processor.router_fqdn, + interfaces=interfaces, + point_group=point_group, + config=processor.config, + ) + if not check_interfaces: + logger.info(f"No {str(point_group).upper()} interfaces found") + continue process_router( - router_fqdn=router_fqdn, - vendor=vendor, - document=netconf, - timestamp=timestamp, + processor=processor, + point_group=point_group, interfaces=check_interfaces, - app_config_params=app_config_params, + timestamp=timestamp, output=output, - point_group=point_group, ) def validate_config(_unused_ctx, _unused_param, file): + # import here because this is the only place we use the config module, and we want + # to reuse the name `config` for other purposes elsewheres + from . import config + try: return config.load(file) except json.JSONDecodeError: @@ -263,7 +237,7 @@ def validate_config(_unused_ctx, _unused_param, file): @click.command() @click.option( "--config", - "app_config_params", + "config", required=True, type=click.File("r"), help="config filename", @@ -293,7 +267,7 @@ def validate_config(_unused_ctx, _unused_param, file): ) @click.argument("interfaces", nargs=-1) def cli( - app_config_params: dict, + config: dict, juniper: bool, nokia: bool, output: str, @@ -313,21 +287,22 @@ def cli( "Supply either a '--juniper' or '--nokia' router, but not both" ) router_fqdn = juniper or nokia - vendor = Vendor.JUNIPER if juniper else Vendor.NOKIA + if juniper: + processor = JuniperRouterProcessor(router_fqdn, config) + else: + processor = NokiaRouterProcessor(router_fqdn, config) error_counter = setup_logging(debug=verbose) try: main( - app_config_params=app_config_params, - router_fqdn=router_fqdn, - vendor=vendor, - output=OutputMethod.from_string(output.lower()), + processor=processor, interfaces=interfaces if interfaces else ALL_, + output=OutputMethod.from_string(output.lower()), ) except Exception: logger.exception( - f"Error while processing {str(vendor).capitalize()} router {router_fqdn}" + f"Error while processing {processor.name.capitalize()} router {router_fqdn}" ) # Exit code 2 indicates CRITICAL in Sensu raise click.exceptions.Exit(2) diff --git a/brian_polling_manager/interface_stats/vendors/common.py b/brian_polling_manager/interface_stats/common.py similarity index 63% rename from brian_polling_manager/interface_stats/vendors/common.py rename to brian_polling_manager/interface_stats/common.py index 79ed6dec8987d05d6c1e9ec14d4bca79677eb86d..a9e06e325ad22b38dc830f44ed3da0083c8728ce 100644 --- a/brian_polling_manager/interface_stats/vendors/common.py +++ b/brian_polling_manager/interface_stats/common.py @@ -1,7 +1,9 @@ +from collections import namedtuple import contextlib +from datetime import datetime +import enum import logging -from functools import partial -from typing import Set +from typing import Dict, Iterable, Optional, Set import ncclient.manager from lxml import etree @@ -63,111 +65,86 @@ ERROR_POINT_FIELDS_SCHEMA = { "additionalProperties": False, } +GWS_INDIRECT_POINT_FIELDS_SCHEMA = { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "type": "object", + "properties": { + "egressOctets": {"type": "number"}, + "ingressOctets": {"type": "number"}, + }, + "required": ["egressOctets", "ingressOctets"], + "additionalProperties": False, +} + INTERFACE_COUNTER_SCHEMA = { "$schema": "https://json-schema.org/draft/2020-12/schema", "definitions": { "brian-counters": BRIAN_POINT_FIELDS_SCHEMA, "error-counters": ERROR_POINT_FIELDS_SCHEMA, + "gws-indirect-counters": GWS_INDIRECT_POINT_FIELDS_SCHEMA, }, "type": "object", "properties": { "name": {"type": "string"}, "brian": {"$ref": "#/definitions/brian-counters"}, - "errors": {"$ref": "#/definitions/error-counters"}, + "error": {"$ref": "#/definitions/error-counters"}, + "gws_indirect": {"$ref": "#/definitions/gws-indirect-counters"}, }, "required": ["name", "brian"], "additionalProperties": False, } +point_group = namedtuple("point_group", "name,config_key,required") -def _counters_to_point( - interface, router_fqdn, timestamp, measurement, counters_name, required=False -): +class PointGroup(enum.Enum): + BRIAN = point_group("brian", "brian-counters", True) + ERROR = point_group("error", "error-counters", False) + GWS_INDIRECT = point_group("gws_indirect", "gws-indirect-counters", False) + + def get_config(self, app_params: dict): + return app_params[self.value.config_key] + + def measurement(self, app_params: dict): + return self.get_config(app_params)["influx"]["measurement"] + + @property + def required(self): + return self.value.required + + def __str__(self): + return self.value.name + + +def counters_to_point(interface_name, counters, router_fqdn, timestamp, measurement): """ - :param interface: an instance of INTERFACE_COUNTER_SCHEMA + :param interface_name: the interface name + :param counters: an instance of BRIAN_POINT_FIELDS_SCHEMA, ERROR_POINT_FIELDS_SCHEMA + or GWS_INDIRECT_POINT_FIELDS_SCHEMA :param router_fqdn: ``hostname`` tag to be set in the generated points + :param timestamp: a datetime object :param measurement: the measurement where the point will be written - :param counter_name: the desired set of counters (either ``brian`` or ``errors``) :return: a brian_polling_manager.influx.INFLUX_POINT object """ - counters = interface.get(counters_name) - if not counters: - if required: - raise ValueError(f"No data available for point '{counters_name}'") - return None - return { "time": timestamp.strftime("%Y-%m-%dT%H:%M:%SZ"), "measurement": measurement, - "tags": {"hostname": router_fqdn, "interface_name": interface["name"]}, + "tags": {"hostname": router_fqdn, "interface_name": interface_name}, "fields": counters, } -def brian_points(router_fqdn, interfaces, timestamp, measurement_name): - """ - returns an interable of points that can be written to influxdb - - :param router_fqdn: 'hostname' tag to be set in the generated points - :param interfaces: an iterable of INTERFACE_COUNTER_SCHEMA - :param timestamp: timestamp to put in the generated points - :param measurement_name: measurement name to put in the generated points - :return: - """ - point_creator = partial( - _counters_to_point, - router_fqdn=router_fqdn, - timestamp=timestamp, - measurement=measurement_name, - counters_name="brian", - required=True, - ) - return map(point_creator, interfaces) - - -def error_points(router_fqdn, interfaces, timestamp, measurement_name): - """ - returns an interable of points that can be written to influxdb - - :param router_fqdn: 'hostname' tag to be set in the generated points - :param interfaces: an iterable of INTERFACE_COUNTER_SCHEMA - :param timestamp: timestamp to put in the generated points - :param measurement_name: measurement name to put in the generated points - :return: - """ - point_creator = partial( - _counters_to_point, - router_fqdn=router_fqdn, - timestamp=timestamp, - measurement=measurement_name, - counters_name="errors", - required=False, - ) - return filter(lambda r: r is not None, map(point_creator, interfaces)) - - class ParsingError(ValueError): pass -def extract_all_counters(iterable, struct): - """ - extract counters for all interfaces that can be parsed. Skip interfaces that can't - be parsed because they lack required fields - - :param iterable: an xpath iterable for interface Element - :param struct: one of - juniper.PHYSICAL_INTERFACE_COUNTERS - juniper.LOGICAL_INTERFACE_COUNTERS - nokia.INTERFACE_COUNTERS - nokia.INTERFACE_COUNTERS_ALT - """ - for ifc in iterable: - try: - result = parse_interface_xml(ifc, struct) - except ParsingError: - continue - yield result +def extract_counters( + iterable, struct, interfaces: Set[str], point_group: Optional[PointGroup] = None +): + if point_group is not None: + if point_group not in struct: + return + struct = get_struct_for_point_group(struct, point_group) + yield from extract_selected_counters(iterable, struct, interfaces) def extract_selected_counters(iterable, struct, interfaces: Set[str]): @@ -278,3 +255,68 @@ def remove_xml_namespaces(xml: str): elem.tag = etree.QName(elem).localname etree.cleanup_namespaces(etree_doc) return etree_doc + + +class RouterProcessor: + name: str + supported_point_groups: Iterable[PointGroup] + _netconf_doc = None + + def __init__(self, router_fqdn, config): + self.router_fqdn = router_fqdn + self.config = config + + @property + def ssh_params(self): + if self.name not in self.config: + raise ValueError(f"'{self.name}' ssh params are required") + return self.config[self.name] + + def group_config(self, point_group: PointGroup): + return point_group.get_config(self.config) + + def measurement(self, point_group: PointGroup): + return point_group.measurement(self.config) + + @property + def netconf_doc(self): + if self._netconf_doc is None: + self._netconf_doc = self._download_netconf_doc() + return self._netconf_doc + + def points( + self, + point_group: PointGroup, + timestamp: datetime, + interfaces: Dict[str, dict], + ): + + for name, counters in self.iter_counters(interfaces, point_group): + yield counters_to_point( + name, + counters, + self.router_fqdn, + timestamp, + measurement=self.measurement(point_group), + ) + + def iter_counters(self, interfaces: Dict[str, dict], point_group: PointGroup): + for counters in self._interface_counters(interfaces, point_group): + interface_name = counters["name"] + if not (group_counters := counters.get(point_group)): + if point_group.required: + raise ValueError( + f"No {point_group} data available for '{interface_name}'" + ) + continue + yield interface_name, group_counters + + def _download_netconf_doc(self): + raise NotImplementedError + + def _interface_counters(self, point_group: PointGroup, interfaces: Dict[str, dict]): + raise NotImplementedError + + +def get_struct_for_point_group(struct: dict, point_group): + return {key: struct[key] for key in ("__defaults__", "name", point_group)} diff --git a/brian_polling_manager/interface_stats/config-example.json b/brian_polling_manager/interface_stats/config-example.json index b8e0c53bccabe2564782a752873ea8b3440ac8ee..908fb8194e1c4d63900a265c1835566f9d9793b8 100644 --- a/brian_polling_manager/interface_stats/config-example.json +++ b/brian_polling_manager/interface_stats/config-example.json @@ -28,5 +28,15 @@ "password": "user-password" }, "inventory-url": "/poller/error-report-interfaces" + }, + "gws-indirect-counters": { + "influx": { + "hostname": "hostname", + "database": "dbname", + "measurement": "dscp32_counters", + "username": "some-username", + "password": "user-password" + }, + "inventory-url": "/poller/interfaces" } } \ No newline at end of file diff --git a/brian_polling_manager/interface_stats/config.py b/brian_polling_manager/interface_stats/config.py index 08b91fdd31c9622b90bc5123becd12b04116ece3..f65320a3c98a0fcfaa0188313d73662c0134a2bc 100644 --- a/brian_polling_manager/interface_stats/config.py +++ b/brian_polling_manager/interface_stats/config.py @@ -60,8 +60,6 @@ CONFIG_SCHEMA = { "properties": { "juniper": {"$ref": "#/definitions/ssh-params"}, "nokia": {"$ref": "#/definitions/ssh-params"}, - # TODO: once this script has become stable, and inprov nokia routers are added - # to inprov, we can make inventory a required property "inventory": { "type": "array", "items": {"type": "string", "format": "uri"}, @@ -69,8 +67,9 @@ CONFIG_SCHEMA = { }, "brian-counters": {"$ref": "#/definitions/interface-counter-info"}, "error-counters": {"$ref": "#/definitions/interface-counter-info"}, + "gws-indirect-counters": {"$ref": "#/definitions/interface-counter-info"}, }, - "required": ["brian-counters", "error-counters"], + "required": ["brian-counters", "error-counters", "inventory"], "additionalProperties": False, } diff --git a/brian_polling_manager/interface_stats/vendors/juniper.py b/brian_polling_manager/interface_stats/juniper.py similarity index 87% rename from brian_polling_manager/interface_stats/vendors/juniper.py rename to brian_polling_manager/interface_stats/juniper.py index eaf55c8ede9eb52e72fba032841ec6b3fd80a26d..89b7e268ca687eecf9d41fb7f15e67824b20924f 100644 --- a/brian_polling_manager/interface_stats/vendors/juniper.py +++ b/brian_polling_manager/interface_stats/juniper.py @@ -1,10 +1,11 @@ import logging import pathlib -from typing import Optional, Collection +from typing import Dict, Optional, Collection -from brian_polling_manager.interface_stats.vendors.common import ( - extract_all_counters, - extract_selected_counters, +from brian_polling_manager.interface_stats.common import ( + PointGroup, + RouterProcessor, + extract_counters, netconf_connect, remove_xml_namespaces, ) @@ -21,7 +22,7 @@ PHYSICAL_INTERFACE_COUNTERS = { # measurement. cf https://github.com/sensu/sensu-go/issues/2213 "__defaults__": {"transform": float, "required": False}, "name": {"path": "./name", "transform": lambda v: str(v).strip()}, - "brian": { + PointGroup.BRIAN: { "ingressOctets": {"path": "./traffic-statistics/input-bytes", "required": True}, "ingressPackets": { "path": "./traffic-statistics/input-packets", @@ -60,7 +61,7 @@ PHYSICAL_INTERFACE_COUNTERS = { # "l2_output_packets": {"path": "./ethernet-mac-statistics/output-packets"}, # "l2_output_unicast": {"path": "./ethernet-mac-statistics/output-unicasts"}, }, - "errors": { + PointGroup.ERROR: { "__defaults__": {"transform": int}, "input_fifo_errors": {"path": "./input-error-list/input-fifo-errors"}, "input_discards": {"path": "./input-error-list/input-discards"}, @@ -97,7 +98,7 @@ LOGICAL_INTERFACE_COUNTERS = { # measurement. cf https://github.com/sensu/sensu-go/issues/2213 "__defaults__": {"transform": float, "required": False}, "name": {"path": "./name", "transform": lambda v: str(v).strip()}, - "brian": { + PointGroup.BRIAN: { "ingressOctets": { "path": [ "./traffic-statistics/input-bytes", @@ -142,23 +143,32 @@ LOGICAL_INTERFACE_COUNTERS = { } -def interface_counters(ifc_doc, interfaces: Optional[Collection[str]] = None): +class JuniperRouterProcessor(RouterProcessor): + name = "juniper" + supported_point_groups = (PointGroup.BRIAN, PointGroup.ERROR) + + def _download_netconf_doc(self): + return get_netconf_interface_info(self.router_fqdn, self.ssh_params) + + def _interface_counters( + self, interfaces: Dict[str, dict], point_group: Optional[PointGroup] + ): + yield from interface_counters(self.netconf_doc, interfaces, point_group) + + +def interface_counters( + ifc_doc, interfaces: Collection[str], point_group: Optional[PointGroup] = None +): phy_interfaces = ifc_doc.xpath("//interface-information/physical-interface") log_interfaces = ifc_doc.xpath( "//interface-information/physical-interface/logical-interface" ) - - if interfaces is None: - yield from extract_all_counters(phy_interfaces, PHYSICAL_INTERFACE_COUNTERS) - yield from extract_all_counters(log_interfaces, LOGICAL_INTERFACE_COUNTERS) - return - remaining = set(interfaces) - yield from extract_selected_counters( - phy_interfaces, PHYSICAL_INTERFACE_COUNTERS, remaining + yield from extract_counters( + phy_interfaces, PHYSICAL_INTERFACE_COUNTERS, remaining, point_group ) - yield from extract_selected_counters( - log_interfaces, LOGICAL_INTERFACE_COUNTERS, remaining + yield from extract_counters( + log_interfaces, LOGICAL_INTERFACE_COUNTERS, remaining, point_group ) for ifc in remaining: diff --git a/brian_polling_manager/interface_stats/vendors/nokia.py b/brian_polling_manager/interface_stats/nokia.py similarity index 74% rename from brian_polling_manager/interface_stats/vendors/nokia.py rename to brian_polling_manager/interface_stats/nokia.py index df466bb3e51291df92e82ef30c5f6a10ac748f79..b47968ec746f1e422153e9a19a326298445e7f8b 100644 --- a/brian_polling_manager/interface_stats/vendors/nokia.py +++ b/brian_polling_manager/interface_stats/nokia.py @@ -1,12 +1,13 @@ from collections import namedtuple import logging import pathlib -from typing import Dict, Optional, Sequence -from brian_polling_manager.interface_stats.vendors.common import ( - extract_all_counters, - extract_selected_counters, +from typing import Dict, Optional +from brian_polling_manager.interface_stats import common +from brian_polling_manager.interface_stats.common import ( + extract_counters, netconf_connect, remove_xml_namespaces, + PointGroup, ) from lxml import etree @@ -27,7 +28,7 @@ INTERFACE_COUNTERS = { "path": ["./lag-name", "./port-id"], "transform": lambda v: str(v).strip(), }, - "brian": { + PointGroup.BRIAN: { "ingressOctets": {"path": "./statistics/in-octets", "required": True}, "ingressPackets": { "path": "./statistics/in-packets", @@ -39,7 +40,7 @@ INTERFACE_COUNTERS = { "egressErrors": {"path": "./statistics/out-errors"}, "ingressDiscards": {"path": "./statistics/in-discards"}, }, - "errors": { + PointGroup.ERROR: { "__defaults__": {"transform": int}, "output_total_errors": {"path": "./statistics/out-errors"}, "input_total_errors": {"path": "./statistics/in-errors"}, @@ -59,7 +60,7 @@ INTERFACE_COUNTERS_ALT = { "path": "./interface-name", "transform": lambda v: str(v).strip(), }, - "brian": { + PointGroup.BRIAN: { "ingressOctets": {"path": "./statistics/ip/in-octets", "required": True}, "ingressPackets": { "path": "./statistics/ip/in-packets", @@ -72,7 +73,7 @@ INTERFACE_COUNTERS_ALT = { "egressOctetsv6": {"path": "./ipv6/statistics/out-octets"}, "egressPacketsv6": {"path": "./ipv6/statistics/out-packets"}, }, - "errors": { + PointGroup.ERROR: { "__defaults__": {"transform": int}, "output_discards": {"path": "./statistics/ip/out-discard-packets"}, }, @@ -86,7 +87,7 @@ EPIPE_COUNTERS = { "path": "./sap-id", "transform": lambda v: str(v).strip(), }, - "brian": { + PointGroup.BRIAN: { "ingressOctets": { "path": ( "./ingress/qos/sap-ingress/forwarding-engine/statistics" @@ -130,7 +131,7 @@ EPIPE_COUNTERS = { "required": True, }, }, - "errors": { + PointGroup.ERROR: { "__defaults__": {"transform": int}, "input_discards": { "path": ( @@ -153,6 +154,73 @@ EPIPE_COUNTERS = { }, } +GWS_INDIRECT_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": "./interface-name", + "transform": lambda v: str(v).strip(), + }, + PointGroup.GWS_INDIRECT: { + "ingressOctets": { + "path": ( + "./ingress/statistics/policy-accounting/" + "destination-class[index/text()=1]/forwarded-bytes" + ) + }, + }, +} + + +class NokiaRouterProcessor(common.RouterProcessor): + name = "nokia" + supported_point_groups = ( + PointGroup.BRIAN, + PointGroup.ERROR, + PointGroup.GWS_INDIRECT, + ) + + def _download_netconf_doc(self): + return get_netconf_interface_info(self.router_fqdn, self.ssh_params) + + def iter_brian_counters(self): + pass + + def _interface_counters( + self, interfaces: Dict[str, dict], point_group: Optional[PointGroup] + ): + for counters in interface_counters(self.netconf_doc, interfaces, point_group): + if counters is not None and PointGroup.GWS_INDIRECT in counters: + name = counters["name"] + interface_data = interfaces.get(name, {}) + self._add_gws_indirect_egress_counters( + name, counters[PointGroup.GWS_INDIRECT], interface_data + ) + yield counters + + def _add_gws_indirect_egress_counters(self, name, counters, interface_data): + ip_filter = interface_data.get("ip_filter") + if not ip_filter: + logger.error( + "No interface information or no ip filter found for" + f" GWS indirect interface {name}" + ) + return + + xpath = ( + f"//data/state/filter/ip-filter[filter-name/text()='{ip_filter}']" + "/entry[entry-id/text()=100]/statistics/egress-hit-byte" + ) + node = next(iter(self.netconf_doc.xpath(xpath)), None) + if node is None: + logger.error( + f"ip filter {ip_filter} not found for GWS indirect interface {name}" + ) + return + + counters["egressOctets"] = float(node.text) + def get_netconf_interface_info( router_name: str, ssh_params: dict @@ -164,6 +232,7 @@ def get_netconf_interface_info( :returns: a netconf document with all required interface data """ filter_tree = { + "filter": ["ip-filter"], "port": ["statistics", "ethernet"], "lag": ["statistics"], "router": ["interface"], @@ -230,7 +299,9 @@ docinfo = namedtuple("docinfo", ("struct", "xpath", "transform")) def interface_counters( - raw_counter_docs: dict, interfaces: Optional[Sequence[str]] = None + raw_counter_docs: dict, + interfaces: Dict[str, dict], + point_group: Optional[PointGroup] = None, ): """ :param raw_counter_docs: output of a call to ``get_netconf_interface_info`` @@ -247,21 +318,19 @@ def interface_counters( docinfo( EPIPE_COUNTERS, "//data/state/service/epipe/sap", _finalize_epipe_counters ), + docinfo( + GWS_INDIRECT_COUNTERS, + "//data/state/service/vprn[service-name/text()='IAS']/interface", + None, + ), ] - - if interfaces is None: - 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 struct, xpath, transform in doc_info: - counters = extract_selected_counters( - raw_counter_docs.xpath(xpath), struct, interfaces=remaining + counters = extract_counters( + raw_counter_docs.xpath(xpath), + struct, + interfaces=remaining, + point_group=point_group, ) if transform is None: yield from counters @@ -276,20 +345,22 @@ def interface_counters( def _finalize_epipe_counters(counters: dict): summed_counters = { - ("brian", "egressOctets"): [ + (PointGroup.BRIAN, "egressOctets"): [ "egressInplusForwardedOctets", "egressExceedForwardedOctets", ], - ("brian", "egressPackets"): [ + (PointGroup.BRIAN, "egressPackets"): [ "egressInplusForwardedPackets", "egressExceedForwardedPackets", ], - ("errors", "output_discards"): [ + (PointGroup.ERROR, "output_discards"): [ "egressInplusDroppedPackets", "egressExceedDroppedPackets", ], } for (group_name, output_counter), parts in summed_counters.items(): + if group_name not in counters: + continue group = counters[group_name] group[output_counter] = sum(group.pop(p, 0) for p in parts) diff --git a/brian_polling_manager/interface_stats/vendors/__init__.py b/brian_polling_manager/interface_stats/vendors/__init__.py deleted file mode 100644 index bbce3cecede38d36214c81c1314ecb7e3bccb10d..0000000000000000000000000000000000000000 --- a/brian_polling_manager/interface_stats/vendors/__init__.py +++ /dev/null @@ -1,39 +0,0 @@ -import enum - -from lxml import etree - -from . import juniper, nokia -from .common import ( - BRIAN_POINT_FIELDS_SCHEMA, - ERROR_POINT_FIELDS_SCHEMA, - INTERFACE_COUNTER_SCHEMA, - brian_points, - error_points, -) - - -class Vendor(enum.Enum): - JUNIPER = ("juniper", juniper) - NOKIA = ("nokia", nokia) - - def get_netconf(self, router_name: str, ssh_params: dict): - return self.value[1].get_netconf_interface_info(router_name, ssh_params) - - def interface_counters(self, document: etree.Element, interfaces=None): - return self.value[1].interface_counters(document, interfaces) - - def config_params(self, app_params: dict): - return app_params[self.value[0]] - - def __str__(self): - return self.value[0] - - -__all__ = [ - "BRIAN_POINT_FIELDS_SCHEMA", - "ERROR_POINT_FIELDS_SCHEMA", - "INTERFACE_COUNTER_SCHEMA", - "brian_points", - "error_points", - "Vendor", -] diff --git a/brian_polling_manager/inventory.py b/brian_polling_manager/inventory.py index 0871e2b6b258167f1cf1efe51cd826782523ee14..4831b78876885c4ab1cbb3d968e03bf1f2bdd797 100644 --- a/brian_polling_manager/inventory.py +++ b/brian_polling_manager/inventory.py @@ -81,9 +81,11 @@ GWS_INDIRECT_SCHEMA = { # minimal validation for our purposes 'name': {'type': 'string'}, 'hostname': {'type': 'string'}, + "interface": {'type': 'string'}, 'vendor': {'type': 'string'}, + 'ip_filter': {'type': ['string', 'null']}, }, - 'required': ['name', 'hostname'] + 'required': ['name', 'interface', 'hostname'] } }, diff --git a/test/interface_stats/conftest.py b/test/interface_stats/conftest.py index 16b5d8b998a610d30ccbd413464e7c3424812df0..e4a7e530aafd47acc3350bf4cc7fe98735718c6d 100644 --- a/test/interface_stats/conftest.py +++ b/test/interface_stats/conftest.py @@ -1,8 +1,8 @@ import json import pathlib from unittest.mock import patch -from brian_polling_manager.interface_stats import cli -from brian_polling_manager.interface_stats.vendors import juniper, nokia +from brian_polling_manager.interface_stats import juniper +from brian_polling_manager.interface_stats import nokia import pytest @@ -29,29 +29,75 @@ def data_dir(): @pytest.fixture -def mocked_get_netconf(data_dir): - def get_netconf(vendor, router_name, **_): - if vendor == cli.Vendor.JUNIPER: - return juniper.get_netconf_interface_info_from_source_dir( - router_name, source_dir=data_dir - ) - - else: - return nokia.get_netconf_interface_info_from_source_dir( - router_name, source_dir=data_dir - ) - - with patch.object( - cli.Vendor, "get_netconf", autospec=True, side_effect=get_netconf - ) as mock: - yield mock +def config(): + return { + "juniper": {}, + "nokia": {}, + "inventory": ["blah"], + "brian-counters": { + "influx": { + "measurement": "testenv_brian_counters", + }, + }, + "error-counters": { + "influx": { + "measurement": "testenv_error_counters", + }, + }, + "gws-indirect-counters": { + "influx": { + "measurement": "gws_indirect_counters", + }, + }, + } +@pytest.fixture +def mocked_get_netconf(data_dir): + def get_netconf_juniper(router_name, *_, **__): + return juniper.get_netconf_interface_info_from_source_dir( + router_name, source_dir=data_dir + ) + + def get_netconf_nokia(router_name, *_, **__): + return nokia.get_netconf_interface_info_from_source_dir( + router_name, source_dir=data_dir + ) + + with ( + patch.object( + juniper, "get_netconf_interface_info", side_effect=get_netconf_juniper + ), + patch.object( + nokia, "get_netconf_interface_info", side_effect=get_netconf_nokia + ), + ): + yield + + +# @functools.lru_cache() def poller_interfaces(): file = DATA_DIR / "poller-interfaces.json" return json.loads(file.read_text()) +# def error_interfaces(): +# def filter_interface(interface: dict): +# description = interface["description"].lower() +# name = interface["name"].lower() +# return ( +# "phy" in description +# and "spare" not in description +# and "non-operational" not in description +# and "reserved" not in description +# and "test" not in description +# and "dsc." not in name +# and "fxp" not in name +# and not re.match(r".*\.\d+$", name) +# ) +# return list(filter(filter_interface, poller_interfaces())) + + @pytest.fixture(scope="session") def juniper_inventory(): def _excluded(ifc): @@ -65,6 +111,47 @@ def juniper_inventory(): return polled +@pytest.fixture(scope="session") +def nokia_inventory(): + file = DATA_DIR / "nokia-interfaces.json" + data = json.loads(file.read_text()) + return {router: set(interfaces) for router, interfaces in data.items()} + + +# @pytest.fixture +# def mock_inventory(juniper_inventory, nokia_inventory): +# def _all_interfaces(): +# for router, interfaces in juniper_inventory.items(): +# yield from ({"router": router, "name": ifc, "vendor": "juniper"} for ifc in interfaces) +# for router, interfaces in nokia_inventory.items(): +# yield from ({"router": router, "name": ifc,"vendor": "nokia"} for ifc in interfaces) +# all_interfaces= [ +# _all_interfaces() +# ] +# error_interface_names = {} + +# def load_inventory_json(url, *args, **kwargs): +# if "gws/indirect" in url: +# return [ +# [ +# { +# "hostname": "rt0.ams.nl.lab.office.geant.net", +# "interface": "lag-11.333", +# "vendor": "nokia", +# "ip_filter": "NREN_IAS_DFN_OUT", +# }, +# ] +# ] +# if "error" in url: +# error_interfaces +# return all_interfaces + +# with patch.object( +# cli, "load_inventory_json", side_effect=load_inventory_json +# ) as mock: +# yield mock + + @pytest.fixture def all_juniper_routers(): return JUNIPER_ROUTERS diff --git a/test/interface_stats/data/capture-test-data-nokia.py b/test/interface_stats/data/capture-test-data-nokia.py index a1a67c66dc5ba037931516cd4470a1a926d57b91..87b0585d44428ae01eb8a4b80b59959fa5ead336 100644 --- a/test/interface_stats/data/capture-test-data-nokia.py +++ b/test/interface_stats/data/capture-test-data-nokia.py @@ -2,7 +2,7 @@ import logging import os import pathlib -from brian_polling_manager.interface_stats.vendors import nokia +from brian_polling_manager.interface_stats import nokia from lxml import etree logger = logging.getLogger(__name__) @@ -14,6 +14,7 @@ ROUTERS = [ "rt0.ams.nl.geant.net", "rt0.lon2.uk.geant.net", "rt0.ath.gr.lab.office.geant.net", + "rt0.ams.nl.lab.office.geant.net", ] SSH_PARAMS = { diff --git a/test/interface_stats/data/capture-test-data.py b/test/interface_stats/data/capture-test-data.py index 05888edb6150b00c345b02f7edc6b95205c62f72..aa5e6cbb19f9722eedd7dba2cc592064256f8161 100644 --- a/test/interface_stats/data/capture-test-data.py +++ b/test/interface_stats/data/capture-test-data.py @@ -1,7 +1,7 @@ import concurrent.futures import pathlib -from brian_polling_manager.interface_stats.vendors.juniper import ( +from brian_polling_manager.interface_stats.juniper import ( get_netconf_interface_info, ) from lxml import etree diff --git a/test/interface_stats/data/nokia-interfaces.json b/test/interface_stats/data/nokia-interfaces.json new file mode 100644 index 0000000000000000000000000000000000000000..8d5f959663b129b0f98708be14bf047074fe407c --- /dev/null +++ b/test/interface_stats/data/nokia-interfaces.json @@ -0,0 +1,907 @@ +{ + "rt0.ams.nl.geant.net": [ + "1/1/c1", + "1/1/c1/1", + "1/1/c2", + "1/1/c2/1", + "1/1/c2/2", + "1/1/c2/3", + "1/1/c2/4", + "1/1/c3", + "1/1/c4", + "1/1/c4/1", + "1/1/c4/2", + "1/1/c4/3", + "1/1/c4/4", + "1/1/c5", + "1/1/c5/1", + "1/1/c6", + "1/1/c7", + "1/1/c7/1", + "1/1/c8", + "1/1/c8/1", + "1/1/c8/2", + "1/1/c9", + "1/1/c9/1", + "1/1/c9/2", + "1/1/c10", + "1/1/c10/1", + "1/1/c11", + "1/1/c11/1", + "1/1/c11/2", + "1/1/c12", + "1/1/c12/1", + "1/1/c12/2", + "1/1/c13", + "1/1/c13/1", + "1/1/c14", + "1/1/c14/1", + "1/1/c14/2", + "1/1/c14/3", + "1/1/c14/4", + "1/1/c15", + "1/1/c16", + "1/1/c16/1", + "1/1/c16/2", + "1/1/c16/3", + "1/1/c16/4", + "1/1/c17", + "1/1/c17/1", + "1/1/c18", + "1/1/c19", + "1/1/c19/1", + "1/1/c20", + "1/1/c20/1", + "1/1/c20/2", + "1/1/c20/3", + "1/1/c20/4", + "1/1/c21", + "1/1/c22", + "1/1/c22/1", + "1/1/c22/2", + "1/1/c22/3", + "1/1/c22/4", + "1/1/c23", + "1/1/c23/1", + "1/1/c24", + "1/1/c25", + "1/1/c25/1", + "1/1/c26", + "1/1/c26/1", + "1/1/c26/2", + "1/1/c27", + "1/1/c27/1", + "1/1/c27/2", + "1/1/c28", + "1/1/c28/1", + "1/1/c29", + "1/1/c29/1", + "1/1/c29/2", + "1/1/c30", + "1/1/c30/1", + "1/1/c30/2", + "1/1/c31", + "1/1/c31/1", + "1/1/c32", + "1/1/c32/1", + "1/1/c32/2", + "1/1/c32/3", + "1/1/c32/4", + "1/1/c33", + "1/1/c34", + "1/1/c34/1", + "1/1/c34/2", + "1/1/c34/3", + "1/1/c34/4", + "1/1/c35", + "1/1/c35/1", + "1/1/c36", + "2/1/c1", + "2/1/c1/1", + "2/1/c2", + "2/1/c2/1", + "2/1/c2/2", + "2/1/c2/3", + "2/1/c2/4", + "2/1/c3", + "2/1/c4", + "2/1/c4/1", + "2/1/c4/2", + "2/1/c4/3", + "2/1/c4/4", + "2/1/c5", + "2/1/c5/1", + "2/1/c6", + "2/1/c7", + "2/1/c7/1", + "2/1/c8", + "2/1/c8/1", + "2/1/c8/2", + "2/1/c9", + "2/1/c9/1", + "2/1/c9/2", + "2/1/c10", + "2/1/c10/1", + "2/1/c11", + "2/1/c11/1", + "2/1/c11/2", + "2/1/c12", + "2/1/c12/1", + "2/1/c12/2", + "2/1/c13", + "2/1/c13/1", + "2/1/c14", + "2/1/c14/1", + "2/1/c14/2", + "2/1/c14/3", + "2/1/c14/4", + "2/1/c15", + "2/1/c16", + "2/1/c16/1", + "2/1/c16/2", + "2/1/c16/3", + "2/1/c16/4", + "2/1/c17", + "2/1/c17/1", + "2/1/c18", + "2/1/c19", + "2/1/c19/1", + "2/1/c20", + "2/1/c20/1", + "2/1/c20/2", + "2/1/c20/3", + "2/1/c20/4", + "2/1/c21", + "2/1/c22", + "2/1/c22/1", + "2/1/c22/2", + "2/1/c22/3", + "2/1/c22/4", + "2/1/c23", + "2/1/c23/1", + "2/1/c24", + "2/1/c25", + "2/1/c25/1", + "2/1/c26", + "2/1/c26/1", + "2/1/c26/2", + "2/1/c27", + "2/1/c27/1", + "2/1/c27/2", + "2/1/c28", + "2/1/c28/1", + "2/1/c29", + "2/1/c29/1", + "2/1/c29/2", + "2/1/c30", + "2/1/c30/1", + "2/1/c30/2", + "2/1/c31", + "2/1/c31/1", + "2/1/c32", + "2/1/c32/1", + "2/1/c32/2", + "2/1/c32/3", + "2/1/c32/4", + "2/1/c33", + "2/1/c34", + "2/1/c34/1", + "2/1/c34/2", + "2/1/c34/3", + "2/1/c34/4", + "2/1/c34/5", + "2/1/c34/6", + "2/1/c34/7", + "2/1/c34/8", + "2/1/c34/9", + "2/1/c34/10", + "2/1/c35", + "2/1/c35/1", + "2/1/c36", + "A/1", + "A/3", + "A/4", + "B/1", + "B/3", + "B/4", + "lag-3", + "lag-4", + "lag-5", + "lag-8", + "lag-9", + "system", + "lag-5.0", + "lag-8.0", + "lag-4.0", + "lag-9.0", + "lag-3.0", + "management" + ], + "rt0.ams.nl.lab.office.geant.net": [ + "1/1/c1", + "1/1/c1/1", + "1/1/c2", + "1/1/c2/1", + "1/1/c2/2", + "1/1/c2/3", + "1/1/c2/4", + "1/1/c3", + "1/1/c4", + "1/1/c4/1", + "1/1/c4/2", + "1/1/c4/3", + "1/1/c4/4", + "1/1/c5", + "1/1/c5/1", + "1/1/c6", + "1/1/c7", + "1/1/c7/1", + "1/1/c8", + "1/1/c8/1", + "1/1/c8/2", + "1/1/c9", + "1/1/c9/1", + "1/1/c9/2", + "1/1/c10", + "1/1/c10/1", + "1/1/c11", + "1/1/c11/1", + "1/1/c12", + "1/1/c12/1", + "1/1/c12/2", + "1/1/c13", + "1/1/c13/1", + "1/1/c14", + "1/1/c14/1", + "1/1/c14/2", + "1/1/c14/3", + "1/1/c14/4", + "1/1/c15", + "1/1/c16", + "1/1/c16/1", + "1/1/c16/2", + "1/1/c16/3", + "1/1/c16/4", + "1/1/c17", + "1/1/c17/1", + "1/1/c18", + "1/1/c19", + "1/1/c19/1", + "1/1/c20", + "1/1/c20/1", + "1/1/c20/2", + "1/1/c20/3", + "1/1/c20/4", + "1/1/c21", + "1/1/c22", + "1/1/c22/1", + "1/1/c22/2", + "1/1/c22/3", + "1/1/c22/4", + "1/1/c23", + "1/1/c23/1", + "1/1/c24", + "1/1/c25", + "1/1/c25/1", + "1/1/c26", + "1/1/c26/1", + "1/1/c26/2", + "1/1/c27", + "1/1/c27/1", + "1/1/c27/2", + "1/1/c28", + "1/1/c28/1", + "1/1/c29", + "1/1/c29/1", + "1/1/c29/2", + "1/1/c30", + "1/1/c30/1", + "1/1/c30/2", + "1/1/c31", + "1/1/c31/1", + "1/1/c32", + "1/1/c32/1", + "1/1/c32/2", + "1/1/c32/3", + "1/1/c32/4", + "1/1/c33", + "1/1/c34", + "1/1/c34/1", + "1/1/c34/2", + "1/1/c34/3", + "1/1/c34/4", + "1/1/c35", + "1/1/c35/1", + "1/1/c36", + "1/1/m1/1", + "2/1/c1", + "2/1/c1/1", + "2/1/c2", + "2/1/c2/1", + "2/1/c2/2", + "2/1/c2/3", + "2/1/c2/4", + "2/1/c3", + "2/1/c4", + "2/1/c4/1", + "2/1/c4/2", + "2/1/c4/3", + "2/1/c4/4", + "2/1/c5", + "2/1/c5/1", + "2/1/c6", + "2/1/c7", + "2/1/c7/1", + "2/1/c8", + "2/1/c8/1", + "2/1/c9", + "2/1/c9/1", + "2/1/c9/2", + "2/1/c10", + "2/1/c10/1", + "2/1/c11", + "2/1/c11/1", + "2/1/c12", + "2/1/c12/1", + "2/1/c12/2", + "2/1/c13", + "2/1/c13/1", + "2/1/c14", + "2/1/c14/1", + "2/1/c14/2", + "2/1/c14/3", + "2/1/c14/4", + "2/1/c15", + "2/1/c16", + "2/1/c16/1", + "2/1/c16/2", + "2/1/c16/3", + "2/1/c16/4", + "2/1/c17", + "2/1/c17/1", + "2/1/c18", + "2/1/c19", + "2/1/c19/1", + "2/1/c20", + "2/1/c20/1", + "2/1/c20/2", + "2/1/c20/3", + "2/1/c20/4", + "2/1/c21", + "2/1/c22", + "2/1/c22/1", + "2/1/c22/2", + "2/1/c22/3", + "2/1/c22/4", + "2/1/c23", + "2/1/c23/1", + "2/1/c24", + "2/1/c25", + "2/1/c25/1", + "2/1/c26", + "2/1/c26/1", + "2/1/c26/2", + "2/1/c27", + "2/1/c27/1", + "2/1/c27/2", + "2/1/c28", + "2/1/c28/1", + "2/1/c29", + "2/1/c29/1", + "2/1/c29/2", + "2/1/c30", + "2/1/c30/1", + "2/1/c30/2", + "2/1/c31", + "2/1/c31/1", + "2/1/c32", + "2/1/c32/1", + "2/1/c32/2", + "2/1/c32/3", + "2/1/c32/4", + "2/1/c33", + "2/1/c34", + "2/1/c34/1", + "2/1/c34/2", + "2/1/c34/3", + "2/1/c34/4", + "2/1/c35", + "2/1/c35/1", + "2/1/c36", + "2/1/m2/1", + "A/1", + "A/3", + "A/4", + "B/1", + "B/3", + "B/4", + "lag-2", + "lag-5", + "lag-7", + "lag-8", + "lag-11", + "lag-16", + "lag-17", + "lag-18", + "lag-700", + "lag-701", + "system", + "lag-7.0", + "lag-5.0", + "lag-8.0", + "lag-2.0", + "management", + "lag-16.2201", + "lt-lhcone-700.a", + "lag-11.100", + "lt-700.a", + "lag-16:2210", + "lag-17.251", + "dsc.0", + "lag-16.2223", + "LAG-11.111", + "lt-lhcone-701.b", + "lag-17.111", + "lag-3.533", + "lag-16.103", + "lag-16.2217", + "lt-701.b", + "lag-16.2219", + "lag-16.2220", + "LAG-17.252", + "lag-11:cp-400", + "lag-11:1061", + "lag-16:2231", + "lag-11:2413", + "lag-18", + "lag-16:2218" + ], + "rt0.ath.gr.lab.office.geant.net": [ + "1/x1/1/c1", + "1/x1/1/c1/1", + "1/x1/1/c2", + "1/x1/1/c2/1", + "1/x1/1/c2/2", + "1/x1/1/c2/3", + "1/x1/1/c2/4", + "1/x1/1/c3", + "1/x1/1/c4", + "1/x1/1/c4/1", + "1/x1/1/c4/2", + "1/x1/1/c4/3", + "1/x1/1/c4/4", + "1/x1/1/c5", + "1/x1/1/c6", + "1/x1/1/c6/1", + "1/x1/1/c6/2", + "1/x1/1/c7", + "1/x1/1/c7/1", + "1/x1/1/c7/2", + "1/x1/1/c8", + "1/x1/1/c8/1", + "1/x1/1/c8/2", + "1/x1/1/c9", + "1/x1/1/c9/1", + "1/x1/1/c10", + "1/x1/1/c11", + "1/x1/1/c12", + "1/x1/1/c13", + "1/x1/1/c13/1", + "1/x1/1/c14", + "1/x1/1/c14/1", + "1/x1/1/c14/2", + "1/x1/1/c14/3", + "1/x1/1/c14/4", + "1/x1/1/c15", + "1/x1/1/c16", + "1/x1/1/c16/1", + "1/x1/1/c16/2", + "1/x1/1/c16/3", + "1/x1/1/c16/4", + "1/x1/1/c17", + "1/x1/1/c18", + "1/x1/1/c18/1", + "1/x1/1/c18/2", + "1/x1/1/c19", + "1/x1/1/c19/1", + "1/x1/1/c20", + "1/x1/1/c20/1", + "1/x1/1/c20/2", + "1/x1/1/c20/3", + "1/x1/1/c20/4", + "1/x1/1/c21", + "1/x1/1/c22", + "1/x1/1/c22/1", + "1/x1/1/c22/2", + "1/x1/1/c22/3", + "1/x1/1/c22/4", + "1/x1/1/c23", + "1/x1/1/c24", + "1/x1/1/c24/1", + "1/x1/1/c24/2", + "1/x1/1/c25", + "1/x1/1/c25/1", + "1/x1/1/c26", + "1/x1/1/c26/1", + "1/x1/1/c27", + "1/x1/1/c27/1", + "1/x1/1/c28", + "1/x1/1/c29", + "1/x1/1/c30", + "1/x1/1/c31", + "1/x1/1/c31/1", + "1/x1/1/c32", + "1/x1/1/c32/1", + "1/x1/1/c32/2", + "1/x1/1/c32/3", + "1/x1/1/c32/4", + "1/x1/1/c33", + "1/x1/1/c34", + "1/x1/1/c34/1", + "1/x1/1/c34/2", + "1/x1/1/c34/3", + "1/x1/1/c34/4", + "1/x1/1/c34/5", + "1/x1/1/c34/6", + "1/x1/1/c34/7", + "1/x1/1/c34/8", + "1/x1/1/c34/9", + "1/x1/1/c34/10", + "1/x1/1/c35", + "1/x1/1/c36", + "1/x1/1/c36/1", + "1/x1/1/c36/2", + "2/x1/1/c1", + "2/x1/1/c1/1", + "2/x1/1/c2", + "2/x1/1/c2/1", + "2/x1/1/c2/2", + "2/x1/1/c2/3", + "2/x1/1/c2/4", + "2/x1/1/c3", + "2/x1/1/c4", + "2/x1/1/c4/1", + "2/x1/1/c4/2", + "2/x1/1/c4/3", + "2/x1/1/c4/4", + "2/x1/1/c5", + "2/x1/1/c6", + "2/x1/1/c6/1", + "2/x1/1/c6/2", + "2/x1/1/c7", + "2/x1/1/c7/1", + "2/x1/1/c8", + "2/x1/1/c8/1", + "2/x1/1/c8/2", + "2/x1/1/c9", + "2/x1/1/c9/1", + "2/x1/1/c9/2", + "2/x1/1/c10", + "2/x1/1/c11", + "2/x1/1/c12", + "2/x1/1/c13", + "2/x1/1/c13/1", + "2/x1/1/c14", + "2/x1/1/c14/1", + "2/x1/1/c14/2", + "2/x1/1/c14/3", + "2/x1/1/c14/4", + "2/x1/1/c15", + "2/x1/1/c16", + "2/x1/1/c16/1", + "2/x1/1/c16/2", + "2/x1/1/c16/3", + "2/x1/1/c16/4", + "2/x1/1/c17", + "2/x1/1/c18", + "2/x1/1/c18/1", + "2/x1/1/c18/2", + "2/x1/1/c19", + "2/x1/1/c19/1", + "2/x1/1/c20", + "2/x1/1/c20/1", + "2/x1/1/c20/2", + "2/x1/1/c20/3", + "2/x1/1/c20/4", + "2/x1/1/c21", + "2/x1/1/c22", + "2/x1/1/c22/1", + "2/x1/1/c22/2", + "2/x1/1/c22/3", + "2/x1/1/c22/4", + "2/x1/1/c23", + "2/x1/1/c24", + "2/x1/1/c24/1", + "2/x1/1/c24/2", + "2/x1/1/c25", + "2/x1/1/c25/1", + "2/x1/1/c26", + "2/x1/1/c26/1", + "2/x1/1/c26/2", + "2/x1/1/c27", + "2/x1/1/c27/1", + "2/x1/1/c27/2", + "2/x1/1/c28", + "2/x1/1/c29", + "2/x1/1/c30", + "2/x1/1/c31", + "2/x1/1/c31/1", + "2/x1/1/c32", + "2/x1/1/c32/1", + "2/x1/1/c32/2", + "2/x1/1/c32/3", + "2/x1/1/c32/4", + "2/x1/1/c33", + "2/x1/1/c34", + "2/x1/1/c34/1", + "2/x1/1/c34/2", + "2/x1/1/c34/3", + "2/x1/1/c34/4", + "2/x1/1/c34/5", + "2/x1/1/c34/6", + "2/x1/1/c34/7", + "2/x1/1/c34/8", + "2/x1/1/c34/9", + "2/x1/1/c34/10", + "2/x1/1/c35", + "2/x1/1/c36", + "2/x1/1/c36/1", + "2/x1/1/c36/2", + "A/1", + "A/3", + "A/4", + "A/gnss", + "B/1", + "B/3", + "B/4", + "B/gnss", + "lag-1", + "lag-2", + "lag-7", + "lag-14", + "lag-16", + "lag-17", + "system", + "guy", + "lag-7.0", + "lag-2.0", + "management", + "lag-16.2000", + "lag-16.2101", + "lag-16.2102", + "lag-14.100", + "dhcpIf", + "toModule", + "lag-16.2121", + "LAG-1.998", + "lag-16.2111", + "lag-16.2113", + "lag-16.2114", + "lag-14.333", + "lag-16.2168", + "lag-14:505.cp-400", + "lag-14:505.1061", + "lag-16:4066", + "lag-14:505.2222", + "lag-17" + ], + "rt0.lon2.uk.geant.net": [ + "1/1/c1", + "1/1/c1/1", + "1/1/c2", + "1/1/c2/1", + "1/1/c2/2", + "1/1/c2/3", + "1/1/c2/4", + "1/1/c3", + "1/1/c4", + "1/1/c4/1", + "1/1/c4/2", + "1/1/c4/3", + "1/1/c4/4", + "1/1/c5", + "1/1/c5/1", + "1/1/c6", + "1/1/c7", + "1/1/c7/1", + "1/1/c8", + "1/1/c8/1", + "1/1/c8/2", + "1/1/c9", + "1/1/c9/1", + "1/1/c9/2", + "1/1/c10", + "1/1/c10/1", + "1/1/c11", + "1/1/c11/1", + "1/1/c11/2", + "1/1/c12", + "1/1/c12/1", + "1/1/c12/2", + "1/1/c13", + "1/1/c13/1", + "1/1/c14", + "1/1/c14/1", + "1/1/c14/2", + "1/1/c14/3", + "1/1/c14/4", + "1/1/c15", + "1/1/c16", + "1/1/c16/1", + "1/1/c16/2", + "1/1/c16/3", + "1/1/c16/4", + "1/1/c17", + "1/1/c17/1", + "1/1/c18", + "1/1/c19", + "1/1/c19/1", + "1/1/c20", + "1/1/c20/1", + "1/1/c20/2", + "1/1/c20/3", + "1/1/c20/4", + "1/1/c21", + "1/1/c22", + "1/1/c22/1", + "1/1/c22/2", + "1/1/c22/3", + "1/1/c22/4", + "1/1/c23", + "1/1/c23/1", + "1/1/c24", + "1/1/c25", + "1/1/c25/1", + "1/1/c26", + "1/1/c26/1", + "1/1/c26/2", + "1/1/c27", + "1/1/c27/1", + "1/1/c27/2", + "1/1/c28", + "1/1/c28/1", + "1/1/c29", + "1/1/c29/1", + "1/1/c29/2", + "1/1/c30", + "1/1/c30/1", + "1/1/c30/2", + "1/1/c31", + "1/1/c31/1", + "1/1/c32", + "1/1/c32/1", + "1/1/c32/2", + "1/1/c32/3", + "1/1/c32/4", + "1/1/c33", + "1/1/c34", + "1/1/c34/1", + "1/1/c34/2", + "1/1/c34/3", + "1/1/c34/4", + "1/1/c35", + "1/1/c35/1", + "1/1/c36", + "2/1/c1", + "2/1/c1/1", + "2/1/c2", + "2/1/c2/1", + "2/1/c2/2", + "2/1/c2/3", + "2/1/c2/4", + "2/1/c3", + "2/1/c4", + "2/1/c4/1", + "2/1/c4/2", + "2/1/c4/3", + "2/1/c4/4", + "2/1/c5", + "2/1/c5/1", + "2/1/c6", + "2/1/c7", + "2/1/c7/1", + "2/1/c8", + "2/1/c8/1", + "2/1/c8/2", + "2/1/c9", + "2/1/c9/1", + "2/1/c9/2", + "2/1/c10", + "2/1/c10/1", + "2/1/c11", + "2/1/c11/1", + "2/1/c11/2", + "2/1/c12", + "2/1/c12/1", + "2/1/c12/2", + "2/1/c13", + "2/1/c13/1", + "2/1/c14", + "2/1/c14/1", + "2/1/c14/2", + "2/1/c14/3", + "2/1/c14/4", + "2/1/c15", + "2/1/c16", + "2/1/c16/1", + "2/1/c16/2", + "2/1/c16/3", + "2/1/c16/4", + "2/1/c17", + "2/1/c17/1", + "2/1/c18", + "2/1/c19", + "2/1/c19/1", + "2/1/c20", + "2/1/c20/1", + "2/1/c20/2", + "2/1/c20/3", + "2/1/c20/4", + "2/1/c21", + "2/1/c22", + "2/1/c22/1", + "2/1/c22/2", + "2/1/c22/3", + "2/1/c22/4", + "2/1/c23", + "2/1/c23/1", + "2/1/c24", + "2/1/c25", + "2/1/c25/1", + "2/1/c26", + "2/1/c26/1", + "2/1/c26/2", + "2/1/c27", + "2/1/c27/1", + "2/1/c27/2", + "2/1/c28", + "2/1/c28/1", + "2/1/c29", + "2/1/c29/1", + "2/1/c29/2", + "2/1/c30", + "2/1/c30/1", + "2/1/c30/2", + "2/1/c31", + "2/1/c31/1", + "2/1/c32", + "2/1/c32/1", + "2/1/c32/2", + "2/1/c32/3", + "2/1/c32/4", + "2/1/c33", + "2/1/c34", + "2/1/c34/1", + "2/1/c34/2", + "2/1/c34/3", + "2/1/c34/4", + "2/1/c34/5", + "2/1/c34/6", + "2/1/c34/7", + "2/1/c34/8", + "2/1/c34/9", + "2/1/c34/10", + "2/1/c35", + "2/1/c35/1", + "2/1/c36", + "A/1", + "A/3", + "A/4", + "B/1", + "B/3", + "B/4", + "lag-1", + "lag-2", + "lag-6", + "lag-8", + "lag-20", + "system", + "lag-1.0", + "lag-2.0", + "lag-8.0", + "lag-6.0", + "management", + "lag-20.1", + "lag-20.111" + ] +} \ No newline at end of file diff --git a/test/interface_stats/data/rt0.ams.nl.lab.office.geant.net-state.xml b/test/interface_stats/data/rt0.ams.nl.lab.office.geant.net-state.xml new file mode 100644 index 0000000000000000000000000000000000000000..23b46cf2ba2219c18b0f7c9fffd2ea2806fa42d8 --- /dev/null +++ b/test/interface_stats/data/rt0.ams.nl.lab.office.geant.net-state.xml @@ -0,0 +1,72656 @@ +<rpc-reply message-id="urn:uuid:6eaf19d2-d6d2-4d46-8f12-ff58b45250b8"> + <data> + <state> + <filter> + <ip-filter> + <filter-name>IP_EDGE_IN</filter-name> + <origin>config</origin> + <applied>false</applied> + <num-entries>10</num-entries> + <oper-filter-id>10</oper-filter-id> + <num-sub-entries>95</num-sub-entries> + <num-cam-entries-fp2>111</num-cam-entries-fp2> + <num-cam-entries-fp4>95</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>10</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>85</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <association> + <embedding> + <filter>DFN_IN</filter> + </embedding> + <embedding> + <filter>LHCONE_DFN_IN</filter> + </embedding> + <embedding> + <filter>LHCONE_REDIRIS_IN</filter> + </embedding> + <embedding> + <filter>NREN_IAS_DFN_IN</filter> + </embedding> + <embedding> + <filter>NREN_IAS_REDIRIS_IN</filter> + </embedding> + <embedding> + <filter>REDIRIS_IN</filter> + </embedding> + </association> + </ip-filter> + <ip-filter> + <filter-name>DFN_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>52</num-entries> + <oper-filter-id>11</oper-filter-id> + <num-sub-entries>165</num-sub-entries> + <num-cam-entries-fp2>181</num-cam-entries-fp2> + <num-cam-entries-fp4>165</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>100</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>12</num-sub-entries> + <num-cam-entries-fp2>12</num-cam-entries-fp2> + <num-cam-entries-fp4>12</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>1149719758</ingress-hit-pkt> + <ingress-hit-byte>632144225572</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>1149719758</ingress-hit-pkt> + <ingress-hit-byte>632144225572</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>214565</ingress-hit-pkt> + <ingress-hit-byte>22302389</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>214565</ingress-hit-pkt> + <ingress-hit-byte>22302389</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>48</ingress-hit-pkt> + <ingress-hit-byte>3800</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>48</ingress-hit-pkt> + <ingress-hit-byte>3800</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>104326</ingress-hit-pkt> + <ingress-hit-byte>10937760</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>4319</offered-pkt> + <offered-byte>337074</offered-byte> + <forwarded-pkt>4319</forwarded-pkt> + <forwarded-byte>337074</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>104326</ingress-hit-pkt> + <ingress-hit-byte>10937760</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>4319</offered-pkt> + <offered-byte>337074</offered-byte> + <forwarded-pkt>4319</forwarded-pkt> + <forwarded-byte>337074</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>1972</ingress-hit-pkt> + <ingress-hit-byte>297104</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>1972</ingress-hit-pkt> + <ingress-hit-byte>297104</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10002</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>2</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10004</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>4</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10007</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>7</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10009</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>9</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10012</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>12</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10014</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>14</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10017</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>17</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10019</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>19</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10021</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>21</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10024</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>24</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10026</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>26</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10029</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>29</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10031</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>31</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10034</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>34</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10036</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>36</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10039</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>39</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10041</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>41</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10043</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>43</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10046</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>46</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10048</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>48</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10051</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>51</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10053</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>53</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10056</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>56</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10058</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>58</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10063</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>63</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10065</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>65</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10068</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>68</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10073</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>73</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10075</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>75</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10078</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>78</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10082</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>82</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10087</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>87</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10092</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>92</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10095</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>95</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10097</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-0</filter-name> + <entry-id>97</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + <flowspec> + <offset>10000</offset> + <oper-state>active</oper-state> + <num-entries>40</num-entries> + <num-inserted>40</num-inserted> + </flowspec> + </embed> + <association> + <card>1</card> + <service> + <service-name>GEANT_GLOBAL</service-name> + <service-type>ies</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:100</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>DFN_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>1</num-entries> + <oper-filter-id>12</oper-filter-id> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>495261</egress-hit-pkt> + <egress-hit-byte>30482958</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>495261</egress-hit-pkt> + <egress-hit-byte>30482958</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>GEANT_GLOBAL</service-name> + <service-type>ies</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:100</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>IP_EDGE_OUT</filter-name> + <origin>config</origin> + <applied>false</applied> + <num-entries>1</num-entries> + <oper-filter-id>13</oper-filter-id> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>10</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <association> + <embedding> + <filter>DFN_OUT</filter> + </embedding> + <embedding> + <filter>LHCONE_DFN_OUT</filter> + </embedding> + <embedding> + <filter>NREN_IAS_DFN_OUT</filter> + </embedding> + <embedding> + <filter>LHCONE_REDIRIS_OUT</filter> + </embedding> + <embedding> + <filter>NREN_IAS_REDIRIS_OUT</filter> + </embedding> + <embedding> + <filter>REDIRIS_OUT</filter> + </embedding> + </association> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_DFN_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>10</num-entries> + <oper-filter-id>14</oper-filter-id> + <num-sub-entries>95</num-sub-entries> + <num-cam-entries-fp2>111</num-cam-entries-fp2> + <num-cam-entries-fp4>95</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>214566</ingress-hit-pkt> + <ingress-hit-byte>22302844</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>214566</ingress-hit-pkt> + <ingress-hit-byte>22302844</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>24</ingress-hit-pkt> + <ingress-hit-byte>2491</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>24</ingress-hit-pkt> + <ingress-hit-byte>2491</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>LHCONE_L3VPN</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:111</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_REDIRIS_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>10</num-entries> + <oper-filter-id>15</oper-filter-id> + <num-sub-entries>95</num-sub-entries> + <num-cam-entries-fp2>111</num-cam-entries-fp2> + <num-cam-entries-fp4>95</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>LHCONE_L3VPN</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:111</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_DFN_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>1</num-entries> + <oper-filter-id>16</oper-filter-id> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>LHCONE_L3VPN</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:111</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_DFN_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>51</num-entries> + <oper-filter-id>17</oper-filter-id> + <num-sub-entries>153</num-sub-entries> + <num-cam-entries-fp2>169</num-cam-entries-fp2> + <num-cam-entries-fp4>153</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>5619</ingress-hit-pkt> + <ingress-hit-byte>584280</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>5619</ingress-hit-pkt> + <ingress-hit-byte>584280</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10002</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>2</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10004</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>4</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10007</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>7</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10009</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>9</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10011</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>11</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10014</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>14</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10016</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>16</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10019</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>19</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10021</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>21</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10023</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>23</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10026</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>26</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10028</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>28</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10033</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>33</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10035</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>35</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10038</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>38</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10042</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>42</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10045</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>45</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10047</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>47</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10052</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>52</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10054</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>54</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10057</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>57</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10059</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>59</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10061</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>61</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10064</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>64</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10066</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>66</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10069</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>69</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10071</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>71</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10073</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>73</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10076</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>76</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10078</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>78</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10083</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>83</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10088</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>88</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10092</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>92</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10095</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>95</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10097</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>97</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + <flowspec> + <offset>10000</offset> + <oper-state>active</oper-state> + <num-entries>41</num-entries> + <num-inserted>41</num-inserted> + </flowspec> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:333</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_DFN_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>2</num-entries> + <oper-filter-id>18</oper-filter-id> + <num-sub-entries>3</num-sub-entries> + <num-cam-entries-fp2>3</num-cam-entries-fp2> + <num-cam-entries-fp4>3</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>100</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>112704</egress-hit-pkt> + <egress-hit-byte>165180848</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>112704</offered-pkt> + <offered-byte>167660336</offered-byte> + <forwarded-pkt>112704</forwarded-pkt> + <forwarded-byte>167660336</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>112704</egress-hit-pkt> + <egress-hit-byte>165180848</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>112704</offered-pkt> + <offered-byte>167660336</offered-byte> + <forwarded-pkt>112704</forwarded-pkt> + <forwarded-byte>167660336</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-11:333</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>IAS_COLT_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>50</num-entries> + <oper-filter-id>19</oper-filter-id> + <num-sub-entries>382</num-sub-entries> + <num-cam-entries-fp2>414</num-cam-entries-fp2> + <num-cam-entries-fp4>382</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>100</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>1122741</ingress-hit-pkt> + <ingress-hit-byte>246816693</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>1122741</ingress-hit-pkt> + <ingress-hit-byte>246816693</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>26</num-sub-entries> + <num-cam-entries-fp2>26</num-cam-entries-fp2> + <num-cam-entries-fp4>26</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>120</num-sub-entries> + <num-cam-entries-fp2>120</num-cam-entries-fp2> + <num-cam-entries-fp4>120</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>36</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10002</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>2</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10004</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>4</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10007</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>7</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10009</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>9</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10011</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>11</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10014</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>14</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10016</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>16</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10019</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>19</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10021</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>21</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10023</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>23</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10026</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>26</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10028</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>28</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10033</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>33</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10035</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>35</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10038</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>38</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10042</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>42</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10045</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>45</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10047</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>47</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10052</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>52</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10054</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>54</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10057</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>57</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10059</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>59</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10061</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>61</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10064</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>64</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10066</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>66</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10069</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>69</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10071</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>71</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10073</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>73</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10076</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>76</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10078</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>78</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10083</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>83</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10088</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>88</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10092</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>92</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10095</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>95</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10097</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>97</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>8</num-entries> + <num-inserted>8</num-inserted> + </filter> + <flowspec> + <offset>10000</offset> + <oper-state>active</oper-state> + <num-entries>41</num-entries> + <num-inserted>41</num-inserted> + </flowspec> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-16:2220</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>IP_PUBLIC_IN</filter-name> + <origin>config</origin> + <applied>false</applied> + <num-entries>8</num-entries> + <oper-filter-id>20</oper-filter-id> + <num-sub-entries>323</num-sub-entries> + <num-cam-entries-fp2>355</num-cam-entries-fp2> + <num-cam-entries-fp4>323</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>10</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>26</num-sub-entries> + <num-cam-entries-fp2>26</num-cam-entries-fp2> + <num-cam-entries-fp4>26</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>120</num-sub-entries> + <num-cam-entries-fp2>120</num-cam-entries-fp2> + <num-cam-entries-fp4>120</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>36</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <association> + <embedding> + <filter>IAS_COLT_IN</filter> + </embedding> + <embedding> + <filter>IAS_AMSIX_IN</filter> + </embedding> + </association> + </ip-filter> + <ip-filter> + <filter-name>IAS_AMSIX_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>50</num-entries> + <oper-filter-id>21</oper-filter-id> + <num-sub-entries>382</num-sub-entries> + <num-cam-entries-fp2>414</num-cam-entries-fp2> + <num-cam-entries-fp4>382</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>100</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>707154</ingress-hit-pkt> + <ingress-hit-byte>52998575</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>707154</ingress-hit-pkt> + <ingress-hit-byte>52998575</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>26</num-sub-entries> + <num-cam-entries-fp2>26</num-cam-entries-fp2> + <num-cam-entries-fp4>26</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>84</num-sub-entries> + <num-cam-entries-fp2>84</num-cam-entries-fp2> + <num-cam-entries-fp4>84</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>120</num-sub-entries> + <num-cam-entries-fp2>120</num-cam-entries-fp2> + <num-cam-entries-fp4>120</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>36</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_PUBLIC_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10002</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>2</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10004</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>4</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10007</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>7</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10009</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>9</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10011</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>11</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10014</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>14</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10016</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>16</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10019</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>19</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10021</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>21</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10023</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>23</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10026</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>26</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10028</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>28</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10033</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>33</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10035</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>35</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10038</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>38</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10042</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>42</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10045</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>45</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10047</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>47</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10052</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>52</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10054</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>54</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10057</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>57</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10059</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>59</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10061</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>61</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10064</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>64</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10066</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>66</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10069</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>69</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10071</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>71</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10073</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>73</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10076</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>76</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10078</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>78</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10083</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>83</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10088</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>88</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10092</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>92</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10095</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>95</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10097</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>97</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>8</num-entries> + <num-inserted>8</num-inserted> + </filter> + <flowspec> + <offset>10000</offset> + <oper-state>active</oper-state> + <num-entries>41</num-entries> + <num-inserted>41</num-inserted> + </flowspec> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-16:2219</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_REDIRIS_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>1</num-entries> + <oper-filter-id>22</oper-filter-id> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>LHCONE_L3VPN</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:111</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_REDIRIS_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>51</num-entries> + <oper-filter-id>23</oper-filter-id> + <num-sub-entries>153</num-sub-entries> + <num-cam-entries-fp2>169</num-cam-entries-fp2> + <num-cam-entries-fp4>153</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>126221</ingress-hit-pkt> + <ingress-hit-byte>10602277</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>126221</ingress-hit-pkt> + <ingress-hit-byte>10602277</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>6</ingress-hit-pkt> + <ingress-hit-byte>636</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>6</ingress-hit-pkt> + <ingress-hit-byte>636</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10002</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>2</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10004</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>4</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10007</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>7</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10009</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>9</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10011</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>11</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10014</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>14</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10016</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>16</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10019</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>19</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10021</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>21</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10023</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>23</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10026</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>26</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10028</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>28</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10033</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>33</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10035</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>35</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10038</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>38</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10042</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>42</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10045</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>45</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10047</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>47</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10052</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>52</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10054</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>54</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10057</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>57</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10059</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>59</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10061</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>61</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10064</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>64</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10066</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>66</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10069</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>69</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10071</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>71</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10073</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>73</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10076</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>76</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10078</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>78</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10083</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>83</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10088</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>88</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10092</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>92</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10095</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>95</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>10097</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>flowspec</origin> + <filter-name>fSpec-21320</filter-name> + <entry-id>97</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + <flowspec> + <offset>10000</offset> + <oper-state>active</oper-state> + <num-entries>41</num-entries> + <num-inserted>41</num-inserted> + </flowspec> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:252</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_REDIRIS_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>2</num-entries> + <oper-filter-id>24</oper-filter-id> + <num-sub-entries>3</num-sub-entries> + <num-cam-entries-fp2>3</num-cam-entries-fp2> + <num-cam-entries-fp4>3</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>100</entry-id> + <inserted-by>fixed</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>IAS</service-name> + <service-type>vprn</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:252</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>REDIRIS_IN</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>10</num-entries> + <oper-filter-id>25</oper-filter-id> + <num-sub-entries>95</num-sub-entries> + <num-cam-entries-fp2>111</num-cam-entries-fp2> + <num-cam-entries-fp4>95</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>13</num-sub-entries> + <num-cam-entries-fp2>13</num-cam-entries-fp2> + <num-cam-entries-fp4>13</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1020</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>42</num-sub-entries> + <num-cam-entries-fp2>42</num-cam-entries-fp2> + <num-cam-entries-fp4>42</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>20</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>126249</ingress-hit-pkt> + <ingress-hit-byte>13125643</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>126249</ingress-hit-pkt> + <ingress-hit-byte>13125643</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1030</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>21</num-sub-entries> + <num-cam-entries-fp2>21</num-cam-entries-fp2> + <num-cam-entries-fp4>21</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>30</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1040</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>40</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1050</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>50</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1060</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>60</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>2188</ingress-hit-pkt> + <ingress-hit-byte>170664</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>2188</offered-pkt> + <offered-byte>170664</offered-byte> + <forwarded-pkt>2188</forwarded-pkt> + <forwarded-byte>170664</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>2188</ingress-hit-pkt> + <ingress-hit-byte>170664</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>2188</offered-pkt> + <offered-byte>170664</offered-byte> + <forwarded-pkt>2188</forwarded-pkt> + <forwarded-byte>170664</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1070</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>18</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>70</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1080</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>80</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>2143</ingress-hit-pkt> + <ingress-hit-byte>330675</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>2143</ingress-hit-pkt> + <ingress-hit-byte>330675</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1085</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>85</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>1090</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_IN</filter-name> + <entry-id>90</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>10</num-entries> + <num-inserted>10</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>GEANT_GLOBAL</service-name> + <service-type>ies</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:251</sap-id> + <ingress>true</ingress> + <egress>false</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>REDIRIS_OUT</filter-name> + <origin>config</origin> + <applied>true</applied> + <num-entries>1</num-entries> + <oper-filter-id>26</oper-filter-id> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>1010</entry-id> + <inserted-by>embedded</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <embedding> + <origin>fixed</origin> + <filter-name>IP_EDGE_OUT</filter-name> + <entry-id>10</entry-id> + </embedding> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>1045246060</egress-hit-pkt> + <egress-hit-byte>551840962116</egress-hit-byte> + <card> + <slot-number>1</slot-number> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>1045246060</egress-hit-pkt> + <egress-hit-byte>551840962116</egress-hit-byte> + </card> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + <oper-state>active</oper-state> + <num-entries>1</num-entries> + <num-inserted>1</num-inserted> + </filter> + </embed> + <association> + <card>1</card> + <service> + <service-name>GEANT_GLOBAL</service-name> + <service-type>ies</service-type> + <nat-inside-downstream>false</nat-inside-downstream> + <nat-outside-upstream>false</nat-outside-upstream> + <nat-outside-downstream>false</nat-outside-downstream> + <network-ingress>false</network-ingress> + <sap> + <sap-id>lag-17:251</sap-id> + <ingress>false</ingress> + <egress>true</egress> + </sap> + </service> + </association> + </ip-filter> + <ip-filter> + <filter-name>fSpec-0</filter-name> + <origin>flowspec</origin> + <applied>false</applied> + <num-entries>40</num-entries> + <num-sub-entries>57</num-sub-entries> + <num-cam-entries-fp2>57</num-cam-entries-fp2> + <num-cam-entries-fp4>57</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>2</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>4</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>7</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>9</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>12</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>14</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>17</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>19</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>21</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>24</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>26</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>29</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>31</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>34</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>36</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>39</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>41</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>43</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>46</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>48</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>51</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>53</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>56</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>58</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>63</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>65</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>68</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>73</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>75</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>78</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>82</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>85</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>87</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>92</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>95</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>97</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <association> + <embedding> + <filter>DFN_IN</filter> + </embedding> + </association> + </ip-filter> + <ip-filter> + <filter-name>fSpec-21320</filter-name> + <origin>flowspec</origin> + <applied>false</applied> + <num-entries>41</num-entries> + <num-sub-entries>58</num-sub-entries> + <num-cam-entries-fp2>58</num-cam-entries-fp2> + <num-cam-entries-fp4>58</num-cam-entries-fp4> + <subscriber-mgmt> + <host-specific-entry> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <credit-control> + <num-inserted>0</num-inserted> + </credit-control> + </host-specific-entry> + <shared-entry> + <num-filters>0</num-filters> + <filter-rule> + <num-inserted>0</num-inserted> + </filter-rule> + <pcc-rule> + <num-inserted>0</num-inserted> + </pcc-rule> + </shared-entry> + </subscriber-mgmt> + <entry> + <entry-id>2</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>4</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>7</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>9</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>11</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>14</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>16</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>19</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>21</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>23</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>26</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>28</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>33</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>35</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>38</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>42</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>45</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>47</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>52</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>54</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>57</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>59</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>61</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>64</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>66</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>69</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>71</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>73</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>76</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>2</num-sub-entries> + <num-cam-entries-fp2>2</num-cam-entries-fp2> + <num-cam-entries-fp4>2</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>78</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>6</num-sub-entries> + <num-cam-entries-fp2>6</num-cam-entries-fp2> + <num-cam-entries-fp4>6</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>83</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>85</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>88</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + <ingress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </ingress-rate-limiter> + <egress-rate-limiter> + <offered-pkt>0</offered-pkt> + <offered-byte>0</offered-byte> + <forwarded-pkt>0</forwarded-pkt> + <forwarded-byte>0</forwarded-byte> + <dropped-pkt>0</dropped-pkt> + <dropped-byte>0</dropped-byte> + </egress-rate-limiter> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>92</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>1</num-sub-entries> + <num-cam-entries-fp2>1</num-cam-entries-fp2> + <num-cam-entries-fp4>1</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>95</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <entry> + <entry-id>97</entry-id> + <inserted-by>flowspec</inserted-by> + <num-sub-entries>4</num-sub-entries> + <num-cam-entries-fp2>4</num-cam-entries-fp2> + <num-cam-entries-fp4>4</num-cam-entries-fp4> + <log-instantiated>false</log-instantiated> + <sticky-dest-hold-remain>0</sticky-dest-hold-remain> + <statistics> + <ingress-hit-pkt>0</ingress-hit-pkt> + <ingress-hit-byte>0</ingress-hit-byte> + <egress-hit-pkt>0</egress-hit-pkt> + <egress-hit-byte>0</egress-hit-byte> + </statistics> + <action> + <pbr-target-status>unknown</pbr-target-status> + </action> + </entry> + <association> + <embedding> + <filter>NREN_IAS_DFN_IN</filter> + </embedding> + <embedding> + <filter>IAS_COLT_IN</filter> + </embedding> + <embedding> + <filter>IAS_AMSIX_IN</filter> + </embedding> + <embedding> + <filter>NREN_IAS_REDIRIS_IN</filter> + </embedding> + </association> + </ip-filter> + </filter> + <lag> + <lag-name>lag-2</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>7375080790529611</in-octets> + <in-packets>5529270967056</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>6</in-broadcast-packets> + <in-multicast-packets>13233932</in-multicast-packets> + <in-unicast-packets>5529257733118</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>6598408965123606</out-octets> + <out-packets>5034327005045</out-packets> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>13200862</out-multicast-packets> + <out-unicast-packets>5034313804179</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>25747783833</in-octets> + <in-packets>261884825</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>1202</in-broadcast-packets> + <in-multicast-packets>4737325</in-multicast-packets> + <in-unicast-packets>257146298</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>819740680762</out-octets> + <out-packets>1562116589</out-packets> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>1147878273</out-multicast-packets> + <out-unicast-packets>414238313</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>1312891097577087</in-octets> + <in-packets>931489071420</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>20</in-broadcast-packets> + <in-multicast-packets>10666027</in-multicast-packets> + <in-unicast-packets>931478405373</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2417052146668212</out-octets> + <out-packets>1607625504973</out-packets> + <out-broadcast-packets>20</out-broadcast-packets> + <out-multicast-packets>10668660</out-multicast-packets> + <out-unicast-packets>1607614836293</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>10474505901778279</in-octets> + <in-packets>7294602348649</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>6</in-broadcast-packets> + <in-multicast-packets>13488190</in-multicast-packets> + <in-unicast-packets>7294588860453</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>12206452532226652</out-octets> + <out-packets>8348475311955</out-packets> + <out-broadcast-packets>9</out-broadcast-packets> + <out-multicast-packets>1162630809</out-multicast-packets> + <out-unicast-packets>8347312681137</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-11</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>43579641153700</in-octets> + <in-packets>31874758381</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>36909</in-broadcast-packets> + <in-multicast-packets>1163912928</in-multicast-packets> + <in-unicast-packets>30710808544</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>40225602818094</out-octets> + <out-packets>29096292665</out-packets> + <out-broadcast-packets>9014</out-broadcast-packets> + <out-multicast-packets>12664167</out-multicast-packets> + <out-unicast-packets>29083619484</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>12842265338130058</in-octets> + <in-packets>8886487404380</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>345850535</in-broadcast-packets> + <in-multicast-packets>2337481282</in-multicast-packets> + <in-unicast-packets>8883804072563</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>10658878993216348</out-octets> + <out-packets>7536544542856</out-packets> + <out-broadcast-packets>5366</out-broadcast-packets> + <out-multicast-packets>26909402</out-multicast-packets> + <out-unicast-packets>7536517628088</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>40220909427091</in-octets> + <in-packets>29074252553</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>213198</in-broadcast-packets> + <in-multicast-packets>4691517</in-multicast-packets> + <in-unicast-packets>29069347838</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>43549780955940</out-octets> + <out-packets>31803951733</out-packets> + <out-broadcast-packets>6</out-broadcast-packets> + <out-multicast-packets>1048551193</out-multicast-packets> + <out-unicast-packets>30755400534</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-18</lag-name> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>2597535</in-octets> + <in-packets>19241</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>19241</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2712981</out-octets> + <out-packets>19241</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>19241</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </lag> + <lag> + <lag-name>lag-700</lag-name> + <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> + </lag> + <lag> + <lag-name>lag-701</lag-name> + <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> + </lag> + <port> + <port-id>pxc-1.a</port-id> + <statistics> + <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>25000</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> + <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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + </ethernet> + </port> + <port> + <port-id>pxc-1.b</port-id> + <statistics> + <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>25000</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> + <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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + </ethernet> + </port> + <port> + <port-id>pxc-2.a</port-id> + <statistics> + <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>25000</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> + <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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + </ethernet> + </port> + <port> + <port-id>pxc-2.b</port-id> + <statistics> + <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>25000</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> + <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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + </ethernet> + </port> + <port> + <port-id>1/1/c1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c1/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-27T11:39:47.0Z</counter-discontinuity-time> + <last-cleared-time>2024-11-27T11:39:47.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>1312891097577087</in-octets> + <in-packets>931489071420</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>20</in-broadcast-packets> + <in-multicast-packets>10666027</in-multicast-packets> + <in-unicast-packets>931478405373</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2417052146668212</out-octets> + <out-packets>1607625504973</out-packets> + <out-broadcast-packets>20</out-broadcast-packets> + <out-multicast-packets>10668660</out-multicast-packets> + <out-unicast-packets>1607614836293</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>13</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.ath-1/x1/</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>20</in-broadcast-packets> + <in-multicast-packets>10666027</in-multicast-packets> + <in-unicast-packets>931478405373</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>1312891097577087</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>20</out-broadcast-packets> + <out-multicast-packets>10668660</out-multicast-packets> + <out-unicast-packets>1607614836293</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>2417052146668212</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>40</total-broadcast-packets> + <total-multicast-packets>21334687</total-multicast-packets> + <total-octets>3729943244245299</total-octets> + <total-packets>2539114576393</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>3896458</octets-64> + <octets-65-to-127>98465104584</octets-65-to-127> + <octets-128-to-255>386503869</octets-128-to-255> + <octets-256-to-511>560896187</octets-256-to-511> + <octets-512-to-1023>1027648060</octets-512-to-1023> + <octets-1024-to-1518>965039558</octets-1024-to-1518> + <octets-1519-to-max>2437705487677</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>569948240</remote-time-mark> + <remote-index>38</remote-index> + <age>4210960</age> + <chassis-id>90:EC:E3:30:D2:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610915905</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/x1/1/c1/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-7 | AMS-ATH | TO-rt0.ams-1/1/c1/1"</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description/> + <system-name>rt0.ath.gr</system-name> + </remote-system> + <statistics> + <transmit> + <frames>264455</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>5</age-outs> + <frames>264456</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c2/1</port-id> + <statistics> + <counter-discontinuity-time>2025-01-07T11:40:08.1Z</counter-discontinuity-time> + <last-cleared-time>2025-01-07T11:40:08.1Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>3913027939999982</in-octets> + <in-packets>2695440297545</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>117866323</in-broadcast-packets> + <in-multicast-packets>133072812</in-multicast-packets> + <in-unicast-packets>2695189358410</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>3258294392808477</out-octets> + <out-packets>2293892178298</out-packets> + <out-broadcast-packets>4673</out-broadcast-packets> + <out-multicast-packets>9361518</out-multicast-packets> + <out-unicast-packets>2293882812107</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>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 ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120)</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>117866323</in-broadcast-packets> + <in-multicast-packets>133072812</in-multicast-packets> + <in-unicast-packets>2695189358410</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>3913027939999982</in-octets> + <in-utilization>4979</in-utilization> + <out-broadcast-packets>4673</out-broadcast-packets> + <out-multicast-packets>9361518</out-multicast-packets> + <out-unicast-packets>2293882812107</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>3258294392808477</out-octets> + <out-utilization>2406</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>117870996</total-broadcast-packets> + <total-multicast-packets>142434330</total-multicast-packets> + <total-octets>7171322332808459</total-octets> + <total-packets>4989332475843</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>97554058</octets-64> + <octets-65-to-127>289858638851</octets-65-to-127> + <octets-128-to-255>370339541</octets-128-to-255> + <octets-256-to-511>626812708</octets-256-to-511> + <octets-512-to-1023>1470237313</octets-512-to-1023> + <octets-1024-to-1518>1180848164</octets-1024-to-1518> + <octets-1519-to-max>4695728045208</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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>551844100</remote-time-mark> + <remote-index>37</remote-index> + <age>4392001</age> + <chassis-id>F4:CC:55:E2:A3:00</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>645</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>xe-0/0/46</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>146405</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>158264</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1424376</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/2</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T14:46:30.3Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:46:30.3Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>26</in-errors> + <in-octets>8929237398130076</in-octets> + <in-packets>6191047106835</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>227984212</in-broadcast-packets> + <in-multicast-packets>2204408470</in-multicast-packets> + <in-unicast-packets>6188614714153</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>7400584600407871</out-octets> + <out-packets>5242652364558</out-packets> + <out-broadcast-packets>693</out-broadcast-packets> + <out-multicast-packets>17547884</out-multicast-packets> + <out-unicast-packets>5242634815981</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>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 ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120)</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>227984212</in-broadcast-packets> + <in-multicast-packets>2204408470</in-multicast-packets> + <in-unicast-packets>6188614714153</in-unicast-packets> + <in-errors>26</in-errors> + <in-octets>8929237398130076</in-octets> + <in-utilization>4751</in-utilization> + <out-broadcast-packets>693</out-broadcast-packets> + <out-multicast-packets>17547884</out-multicast-packets> + <out-unicast-packets>5242634815981</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>7400584600407871</out-octets> + <out-utilization>752</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>13</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>227984905</total-broadcast-packets> + <total-multicast-packets>2221956354</total-multicast-packets> + <total-octets>16329821998537947</total-octets> + <total-packets>11433699471393</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>13</alignment> + <carrier-sense>0</carrier-sense> + <fcs>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>173497336</octets-64> + <octets-65-to-127>735880542465</octets-65-to-127> + <octets-128-to-255>625180946</octets-128-to-255> + <octets-256-to-511>1147625224</octets-256-to-511> + <octets-512-to-1023>4518527972</octets-512-to-1023> + <octets-1024-to-1518>2175692208</octets-1024-to-1518> + <octets-1519-to-max>10689178405242</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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>42749</remote-time-mark> + <remote-index>1</remote-index> + <age>9910015</age> + <chassis-id>F4:CC:55:E2:A3:00</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>544</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>xe-1/0/46</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>330338</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>357124</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>3214116</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/3</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T14:46:30.3Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:46:30.3Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>152</in-errors> + <in-octets>43579641153700</in-octets> + <in-packets>31874758381</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>36909</in-broadcast-packets> + <in-multicast-packets>1163912928</in-multicast-packets> + <in-unicast-packets>30710808544</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>40225602818094</out-octets> + <out-packets>29096292665</out-packets> + <out-broadcast-packets>9014</out-broadcast-packets> + <out-multicast-packets>12664167</out-multicast-packets> + <out-unicast-packets>29083619484</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>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_DFN_LAB_AP</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>36909</in-broadcast-packets> + <in-multicast-packets>1163912928</in-multicast-packets> + <in-unicast-packets>30710808544</in-unicast-packets> + <in-errors>152</in-errors> + <in-octets>43579641153700</in-octets> + <in-utilization>9463</in-utilization> + <out-broadcast-packets>9014</out-broadcast-packets> + <out-multicast-packets>12664167</out-multicast-packets> + <out-unicast-packets>29083619484</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>40225602818094</out-octets> + <out-utilization>4588</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>37</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>78</undersize-packets> + <total-broadcast-packets>45923</total-broadcast-packets> + <total-multicast-packets>1176577095</total-multicast-packets> + <total-octets>83805243971794</total-octets> + <total-packets>60971051046</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>37</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>2012323</octets-64> + <octets-65-to-127>5454365127</octets-65-to-127> + <octets-128-to-255>22113679</octets-128-to-255> + <octets-256-to-511>742852</octets-256-to-511> + <octets-512-to-1023>1151681804</octets-512-to-1023> + <octets-1024-to-1518>2251210</octets-1024-to-1518> + <octets-1519-to-max>54337884051</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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>483667860</remote-time-mark> + <remote-index>34</remote-index> + <age>7504404</age> + <chassis-id>20:D8:0B:F6:F8:68</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>PHY CUSTOMER DFN P_AE10 SRF21078 | DFN AP1 Migration 1_3</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. JNP204 [MX204] internet router, kernel JUNOS 20.4R3-S4.8, Build date: 2022-08-16 20:38:05 UTC Copyright (c) 1996-2022 Juniper Networks, Inc.</system-description> + <system-name>ls1.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.38</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>330309</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>357031</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>3117213</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/4</port-id> + <statistics> + <counter-discontinuity-time>2025-01-22T10:56:22.1Z</counter-discontinuity-time> + <last-cleared-time>2025-01-22T10:56:22.1Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>40220909427091</in-octets> + <in-packets>29074252553</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>213198</in-broadcast-packets> + <in-multicast-packets>4691517</in-multicast-packets> + <in-unicast-packets>29069347838</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>43549780955940</out-octets> + <out-packets>31803951733</out-packets> + <out-broadcast-packets>6</out-broadcast-packets> + <out-multicast-packets>1048551193</out-multicast-packets> + <out-unicast-packets>30755400534</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_REDIRIS_LAB_AP1</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>213198</in-broadcast-packets> + <in-multicast-packets>4691517</in-multicast-packets> + <in-unicast-packets>29069347838</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>40220909427091</in-octets> + <in-utilization>4588</in-utilization> + <out-broadcast-packets>6</out-broadcast-packets> + <out-multicast-packets>1048551193</out-multicast-packets> + <out-unicast-packets>30755400534</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>43549780955940</out-octets> + <out-utilization>9463</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>213204</total-broadcast-packets> + <total-multicast-packets>1053242710</total-multicast-packets> + <total-octets>83770690383031</total-octets> + <total-packets>60878204286</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>941421</octets-64> + <octets-65-to-127>5432593533</octets-65-to-127> + <octets-128-to-255>6561913</octets-128-to-255> + <octets-256-to-511>267619</octets-256-to-511> + <octets-512-to-1023>1100277692</octets-512-to-1023> + <octets-1024-to-1518>306807</octets-1024-to-1518> + <octets-1519-to-max>54337255301</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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>681219060</remote-time-mark> + <remote-index>39</remote-index> + <age>3098627</age> + <chassis-id>20:D8:0B:F6:F8:68</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>xe-0/1/1</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>PHY CUSTOMER REDIRIS P_AE17 SRF21114</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. JNP204 [MX204] internet router, kernel JUNOS 20.4R3-S4.8, Build date: 2022-08-16 20:38:05 UTC Copyright (c) 1996-2022 Juniper Networks, Inc.</system-description> + <system-name>ls1.lab.geant.private</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.38</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>330343</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>357053</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1763153</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c4/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c4/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c4/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c4/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c5</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c5/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T14:46:30.3Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:46:30.3Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>10474505901778279</in-octets> + <in-packets>7294602348649</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>6</in-broadcast-packets> + <in-multicast-packets>13488190</in-multicast-packets> + <in-unicast-packets>7294588860453</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>12206452532226652</out-octets> + <out-packets>8348475311955</out-packets> + <out-broadcast-packets>9</out-broadcast-packets> + <out-multicast-packets>1162630809</out-multicast-packets> + <out-unicast-packets>8347312681137</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>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 BACKBONE P_lag-8 | AMS-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>6</in-broadcast-packets> + <in-multicast-packets>13488190</in-multicast-packets> + <in-unicast-packets>7294588860453</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>10474505901778279</in-octets> + <in-utilization>80</in-utilization> + <out-broadcast-packets>9</out-broadcast-packets> + <out-multicast-packets>1162630809</out-multicast-packets> + <out-unicast-packets>8347312681137</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>12206452532226652</out-octets> + <out-utilization>247</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>15</total-broadcast-packets> + <total-multicast-packets>1176118999</total-multicast-packets> + <total-octets>22680958434004931</total-octets> + <total-packets>15643077660604</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>11240585</octets-64> + <octets-65-to-127>946242180796</octets-65-to-127> + <octets-128-to-255>1881537062</octets-128-to-255> + <octets-256-to-511>2138514390</octets-256-to-511> + <octets-512-to-1023>16269564959</octets-512-to-1023> + <octets-1024-to-1518>3583650015</octets-1024-to-1518> + <octets-1519-to-max>14672950972797</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>34815990</remote-time-mark> + <remote-index>10</remote-index> + <age>9562282</age> + <chassis-id>9C:E0:41:60:F7:E8</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610899777</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/1/c5/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-LON | to-rt0.ams-1/1/c5/1"</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description/> + <system-name>rt0.lon.uk</system-name> + </remote-system> + <statistics> + <transmit> + <frames>330275</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>330275</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c6</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c7</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c7/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c8</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c8/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>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>remote</current-alarms> + <reported-alarms>remote</reported-alarms> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c8/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>signal-fail local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c9</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c9/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c9/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c10</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c10/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c11</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c11/1</port-id> + <statistics> + <counter-discontinuity-time>2025-02-10T14:13:44.8Z</counter-discontinuity-time> + <last-cleared-time>2025-02-10T14:13:44.8Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>14680513185</in-octets> + <in-packets>152928268</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>1202</in-broadcast-packets> + <in-multicast-packets>2696871</in-multicast-packets> + <in-unicast-packets>150230195</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>173620199700</out-octets> + <out-packets>337187815</out-packets> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>2373201</out-multicast-packets> + <out-unicast-packets>334814611</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</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>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 INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0</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>1202</in-broadcast-packets> + <in-multicast-packets>2696871</in-multicast-packets> + <in-unicast-packets>150230195</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>14680513185</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>3</out-broadcast-packets> + <out-multicast-packets>2373201</out-multicast-packets> + <out-unicast-packets>334814611</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>173620199700</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>1205</total-broadcast-packets> + <total-multicast-packets>5070072</total-multicast-packets> + <total-octets>188300712885</total-octets> + <total-packets>490116083</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>1324846</octets-64> + <octets-65-to-127>223936873</octets-65-to-127> + <octets-128-to-255>69123422</octets-128-to-255> + <octets-256-to-511>63444607</octets-256-to-511> + <octets-512-to-1023>19469269</octets-512-to-1023> + <octets-1024-to-1518>112511003</octets-1024-to-1518> + <octets-1519-to-max>306063</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>110790</remote-time-mark> + <remote-index>8</remote-index> + <age>9909334</age> + <chassis-id>20:D8:0B:EB:3A:78</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_ae4 | AMS-AMS | TO-rt0.ams-1/1/c11/1</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. JNP204 [MX204] internet router, kernel JUNOS 20.4R3-S4.8, Build date: 2022-08-16 20:38:05 UTC Copyright (c) 1996-2022 Juniper Networks, Inc.</system-description> + <system-name>rt1.ams.nl.office.geant.net</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.11</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>330320</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>356994</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1427976</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c12</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c12/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c12/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c13</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c13/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>34231684</in-octets> + <in-packets>269671</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>38261</in-broadcast-packets> + <in-multicast-packets>231410</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>23179408</out-octets> + <out-packets>269528</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>269528</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>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>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>38261</in-broadcast-packets> + <in-multicast-packets>231410</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>34231684</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>269528</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>23179408</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>38261</total-broadcast-packets> + <total-multicast-packets>500938</total-multicast-packets> + <total-octets>57411092</total-octets> + <total-packets>539199</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>2</octets-64> + <octets-65-to-127>500936</octets-65-to-127> + <octets-128-to-255>2</octets-128-to-255> + <octets-256-to-511>38259</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>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>862718030</remote-time-mark> + <remote-index>40</remote-index> + <age>1283267</age> + <chassis-id>90:EC:E3:30:D2:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1/x1/1/c19/1</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>1/x1/1/c19/1, 400-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.ath.gr</system-name> + </remote-system> + <statistics> + <transmit> + <frames>269528</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>230722</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c14</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c14/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c14/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c14/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c14/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c15</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c16</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c16/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c16/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c16/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c16/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c17</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c17/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c18</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c19</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c19/1</port-id> + <statistics> + <counter-discontinuity-time>2025-02-20T15:19:41.0Z</counter-discontinuity-time> + <last-cleared-time>2025-02-20T15:19:41.0Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>2597535</in-octets> + <in-packets>19241</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>19241</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2712981</out-octets> + <out-packets>19241</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>19241</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </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>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 CUSTOMER CESNET |lab-looped-to-2/1/c19/1</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>19241</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>2597535</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>19241</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>2712981</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>38482</total-multicast-packets> + <total-octets>5310516</total-octets> + <total-packets>38482</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>38482</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> + <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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>933296840</remote-time-mark> + <remote-index>43</remote-index> + <age>577478</age> + <chassis-id>18:C3:00:91:FD:18</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1611162817</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>2/1/c19/1, 400-Gig Ethernet, "PHY test-port |lab-looped-to-1/1/c19/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>42746</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>42746</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c20</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c20/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c20/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c20/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c20/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c21</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c22</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c22/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </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> + <ethernet-virtual-connection> + <vlan-id>533</vlan-id> + <identifier/> + <status>new-and-not-active</status> + <status-time>2024-11-04T14:46:30.8Z</status-time> + <type>multipoint-to-multipoint</type> + </ethernet-virtual-connection> + <user-network-interface> + <identifier>SNM UPLINK 1</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>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> + <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>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c22/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </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> + <ethernet-virtual-connection> + <vlan-id>533</vlan-id> + <identifier/> + <status>new-and-not-active</status> + <status-time>2024-11-04T14:46:30.8Z</status-time> + <type>multipoint-to-multipoint</type> + </ethernet-virtual-connection> + <user-network-interface> + <identifier>SNM UPLINK 2</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> + <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>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c22/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c22/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c23</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c23/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c24</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c25</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c25/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c26</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c26/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c26/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c27</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c27/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c27/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c28</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c28/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c29</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c29/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c29/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c30</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c30/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>signal-fail local block-not-locked</current-alarms> + <reported-alarms>local</reported-alarms> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c30/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>signal-fail local block-not-locked</current-alarms> + <reported-alarms>local</reported-alarms> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c31</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c31/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c32</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c32/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c32/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c32/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c32/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c33</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c34</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c34/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c34/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c34/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c34/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c35</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/c35/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c36</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>1/1/m1/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T15:31:06.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>2/1/c1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c1/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T14:46:30.3Z</counter-discontinuity-time> + <last-cleared-time>2024-11-04T14:46:30.3Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>7375080790532767</in-octets> + <in-packets>5529270967078</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>6</in-broadcast-packets> + <in-multicast-packets>13233937</in-multicast-packets> + <in-unicast-packets>5529257733135</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>6598408965126228</out-octets> + <out-packets>5034327005070</out-packets> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>13200868</out-multicast-packets> + <out-unicast-packets>5034313804198</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>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 BACKBONE P_lag-2 | AMS-BIL | to-rt0.bil-1/x1/</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>6</in-broadcast-packets> + <in-multicast-packets>13233937</in-multicast-packets> + <in-unicast-packets>5529257733135</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>7375080790532767</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>4</out-broadcast-packets> + <out-multicast-packets>13200868</out-multicast-packets> + <out-unicast-packets>5034313804198</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>6598408965126228</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>10</total-broadcast-packets> + <total-multicast-packets>26434805</total-multicast-packets> + <total-octets>13973489755658995</total-octets> + <total-packets>10563597972148</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>7373528</octets-64> + <octets-65-to-127>1259986590320</octets-65-to-127> + <octets-128-to-255>1293139724</octets-128-to-255> + <octets-256-to-511>2068125758</octets-256-to-511> + <octets-512-to-1023>690866947970</octets-512-to-1023> + <octets-1024-to-1518>17744709445</octets-1024-to-1518> + <octets-1519-to-max>8591631085403</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>127630292</remote-time-mark> + <remote-index>4</remote-index> + <age>8634143</age> + <chassis-id>90:EC:E3:32:26:A4</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610916289</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/x1/1/c7/1, 400-Gig Ethernet, "PHY INFRASTRUCTURE BACKBONE P_lag-2 | AMS-BIL | TO-rt0.ams-2/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.bil.es</system-name> + </remote-system> + <statistics> + <transmit> + <frames>327734</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>1</age-outs> + <frames>327732</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c2/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c2/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c2/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c2/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c4/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c4/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c4/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c4/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c5</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c5/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c6</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c7</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c7/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c8</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c8/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>signal-fail local block-not-locked</current-alarms> + <reported-alarms>local</reported-alarms> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c9</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c9/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c9/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c10</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c10/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c11</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c11/1</port-id> + <statistics> + <counter-discontinuity-time>2025-02-10T14:13:44.9Z</counter-discontinuity-time> + <last-cleared-time>2025-02-10T14:13:44.9Z</last-cleared-time> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>11067513435</in-octets> + <in-packets>108959950</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>2040462</in-multicast-packets> + <in-unicast-packets>106919488</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>646124664623</out-octets> + <out-packets>1224937147</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>1145511335</out-multicast-packets> + <out-unicast-packets>79425812</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</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>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 INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0</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>2040462</in-multicast-packets> + <in-unicast-packets>106919488</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>11067513435</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>1145511335</out-multicast-packets> + <out-unicast-packets>79425812</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>646124664623</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>1147551797</total-multicast-packets> + <total-octets>657192178058</total-octets> + <total-packets>1333897097</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>1083951</octets-64> + <octets-65-to-127>102196880</octets-65-to-127> + <octets-128-to-255>42024605</octets-128-to-255> + <octets-256-to-511>41227929</octets-256-to-511> + <octets-512-to-1023>1146891166</octets-512-to-1023> + <octets-1024-to-1518>234709</octets-1024-to-1518> + <octets-1519-to-max>237857</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>110792</remote-time-mark> + <remote-index>3</remote-index> + <age>9909338</age> + <chassis-id>20:D8:0B:EB:3A:78</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>et-0/0/2</remote-port-id> + <remote-port-id-subtype>interface-name</remote-port-id-subtype> + <port-description>PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-AMS | TO-rt0.ams-2/1/c11/1</port-description> + <system-enabled-capabilities>bridge router</system-enabled-capabilities> + <system-supported-capabilities>bridge router</system-supported-capabilities> + <system-description>Juniper Networks, Inc. JNP204 [MX204] internet router, kernel JUNOS 20.4R3-S4.8, Build date: 2022-08-16 20:38:05 UTC Copyright (c) 1996-2022 Juniper Networks, Inc.</system-description> + <system-name>rt1.ams.nl.office.geant.net</system-name> + <mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + <mgmt-address>172.16.113.11</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>330318</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>357038</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>1428152</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c12</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c12/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c12/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c13</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c13/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>20772026</in-octets> + <in-packets>81132</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>52234</in-broadcast-packets> + <in-multicast-packets>28898</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>2435004</out-octets> + <out-packets>28314</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>28314</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>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>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>52234</in-broadcast-packets> + <in-multicast-packets>28898</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>20772026</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>28314</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>2435004</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>52234</total-broadcast-packets> + <total-multicast-packets>57212</total-multicast-packets> + <total-octets>23207030</total-octets> + <total-packets>109446</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>549</octets-64> + <octets-65-to-127>57212</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>51685</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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>28314</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>2</age-outs> + <frames>28152</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c14</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c14/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c14/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c14/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c14/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c15</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c16</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c16/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c16/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c16/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c16/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c17</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c17/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c18</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c19</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c19/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4864230</in-octets> + <in-packets>42366</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>42366</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>4748664</out-octets> + <out-packets>42366</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>42366</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </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>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 test-port |lab-looped-to-1/1/c19/1</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>42366</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>4864230</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>42366</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>4748664</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>84732</total-multicast-packets> + <total-octets>9612894</total-octets> + <total-packets>84732</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>46225</octets-65-to-127> + <octets-128-to-255>38507</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> + <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:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <remote-system> + <remote-time-mark>933296822</remote-time-mark> + <remote-index>9</remote-index> + <age>577483</age> + <chassis-id>18:C3:00:91:FD:18</chassis-id> + <chassis-id-subtype>mac-address</chassis-id-subtype> + <remote-port-id>1610900673</remote-port-id> + <remote-port-id-subtype>local</remote-port-id-subtype> + <port-description>1/1/c19/1, 400-Gig Ethernet, "PHY CUSTOMER CESNET |lab-looped-to-2/1/c19/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>42366</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>42366</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c20</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c20/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c20/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c20/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c20/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c21</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c22</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c22/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c22/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c22/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c22/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c23</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c23/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c24</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c25</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c25/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c26</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c26/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c26/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c27</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c27/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c27/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c28</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c28/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c29</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c29/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c29/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c30</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c30/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c30/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local block-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>100000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>100-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c31</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c31/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c32</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c32/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c32/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c32/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c32/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c33</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c34</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c34/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c34/2</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c34/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c34/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local frame-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>10000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c35</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/c35/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <egress-queue> + <queue> + <queue-id>1</queue-id> + </queue> + <queue> + <queue-id>2</queue-id> + </queue> + <queue> + <queue-id>3</queue-id> + </queue> + <queue> + <queue-id>4</queue-id> + </queue> + <queue> + <queue-id>5</queue-id> + </queue> + <queue> + <queue-id>6</queue-id> + </queue> + <queue> + <queue-id>7</queue-id> + </queue> + <queue> + <queue-id>8</queue-id> + </queue> + </egress-queue> + </statistics> + <ethernet> + <current-alarms>local alignment-marker-not-locked</current-alarms> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>full</oper-duplex> + <oper-speed>400000</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet ipv4 ipv6</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>16000</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>400-Gig Ethernet</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + <pause> + <frames-received>0</frames-received> + <frames-transmitted>0</frames-transmitted> + </pause> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + <efm-oam> + <config-revision>0</config-revision> + <function-support>loopback</function-support> + <dying-gasp-tx-on-reset-oper-state>inactive</dying-gasp-tx-on-reset-oper-state> + <grace-tx-oper-state>inactive</grace-tx-oper-state> + <loop-detected>false</loop-detected> + <loopback-state>none</loopback-state> + <oper-state>disabled</oper-state> + <pdu-size>1518</pdu-size> + <soft-reset-action>none</soft-reset-action> + <vendor-info>00:01:00:2c</vendor-info> + <vendor-oui>00:16:4d</vendor-oui> + <statistics> + <frames-lost>0</frames-lost> + <receive> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </receive> + <transmit> + <information>0</information> + <unique-event-notification>0</unique-event-notification> + <duplicate-event-notification>0</duplicate-event-notification> + <loopback-control>0</loopback-control> + <organization-specific>0</organization-specific> + <unsupported-codes>0</unsupported-codes> + <variable-request>0</variable-request> + <variable-response>0</variable-response> + </transmit> + </statistics> + </efm-oam> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <statistics> + <transmit> + <frames>0</frames> + <length-error-frames>0</length-error-frames> + </transmit> + <receive> + <age-outs>0</age-outs> + <frames>0</frames> + <frame-discards>0</frame-discards> + <frame-errors>0</frame-errors> + <tlv-discards>0</tlv-discards> + <tlv-unknown>0</tlv-unknown> + </receive> + </statistics> + <tx-mgmt-address> + <mgmt-address-system-type>oob</mgmt-address-system-type> + <mgmt-address>172.16.254.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-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.30</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system</mgmt-address-system-type> + <mgmt-address>62.40.119.6</mgmt-address> + <mgmt-address-subtype>ipv4</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>system-ipv6</mgmt-address-system-type> + <mgmt-address>2001:799:1ab::6</mgmt-address> + <mgmt-address-subtype>ipv6</mgmt-address-subtype> + </tx-mgmt-address> + <tx-mgmt-address> + <mgmt-address-system-type>oob-ipv6</mgmt-address-system-type> + <mgmt-address-subtype>other</mgmt-address-subtype> + </tx-mgmt-address> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c36</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + </port> + <port> + <port-id>2/1/m2/1</port-id> + <statistics> + <counter-discontinuity-time>2024-11-04T15:31:06.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>A/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4481830</in-octets> + <in-packets>66851</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>63588</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>3263</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>499241</out-octets> + <out-packets>3353</out-packets> + <out-broadcast-packets>234</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>3119</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>7</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>63588</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>3263</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>4481830</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>234</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>3119</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>499241</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>63822</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>4981071</total-octets> + <total-packets>70204</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>22232</octets-64> + <octets-65-to-127>47181</octets-65-to-127> + <octets-128-to-255>89</octets-128-to-255> + <octets-256-to-511>605</octets-256-to-511> + <octets-512-to-1023>61</octets-512-to-1023> + <octets-1024-to-1518>36</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>idle</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + </ethernet> + </port> + <port> + <port-id>A/3</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>not-applicable</oper-duplex> + <oper-speed>0</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability>ethernet</ptp-timestamp-capability> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>0</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <elmi> + <link-status>up</link-status> + <user-network-interface> + <identifier>10/100/Gig Ethernet SFP</identifier> + <type>bundling</type> + </user-network-interface> + <statistics> + <received> + <discarded-messages>0</discarded-messages> + <invalid-sequence-number-messages>0</invalid-sequence-number-messages> + <status-enquiry-messages>0</status-enquiry-messages> + <status-enquiry-message-timeouts>0</status-enquiry-message-timeouts> + </received> + <transmitted> + <asynchronous-status-messages>0</asynchronous-status-messages> + <status-messages>0</status-messages> + </transmitted> + </statistics> + </elmi> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + </ethernet> + </port> + <port> + <port-id>A/4</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-packets>0</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-packets>0</out-packets> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + </statistics> + <ethernet> + <current-alarms/> + <reported-alarms/> + <mdi-type>unknown</mdi-type> + <oper-duplex>not-applicable</oper-duplex> + <oper-speed>0</oper-speed> + <oper-state-change-count>0</oper-state-change-count> + <oper-tx-clock>not-applicable</oper-tx-clock> + <oper-egress-rate>unrestricted</oper-egress-rate> + <ptp-timestamp-capability/> + <crc-monitor> + <current-alarms/> + </crc-monitor> + <dampening> + <current-penalties>0</current-penalties> + <max-penalties>0</max-penalties> + <oper-state>idle</oper-state> + </dampening> + <down-when-looped> + <loop-state>no-loop-detected</loop-state> + </down-when-looped> + <ssm> + <received-quality-level>unknown</received-quality-level> + <received-ssm-code>254</received-ssm-code> + <transmitted-quality-level>reserved0</transmitted-quality-level> + </ssm> + <statistics> + <in-broadcast-packets>0</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>0</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>0</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>0</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>0</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>0</out-octets> + <out-utilization>0</out-utilization> + <collisions>0</collisions> + <crc-align-errors>0</crc-align-errors> + <drop-events>0</drop-events> + <fragments>0</fragments> + <jabbers>0</jabbers> + <oversize-packets>0</oversize-packets> + <undersize-packets>0</undersize-packets> + <total-broadcast-packets>0</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>0</total-octets> + <total-packets>0</total-packets> + <ethernet-like-medium> + <frame-too-long>0</frame-too-long> + <collision> + <excessive>0</excessive> + <late>0</late> + <multiple>0</multiple> + <single>0</single> + </collision> + <error> + <alignment>0</alignment> + <carrier-sense>0</carrier-sense> + <fcs>0</fcs> + <internal-mac-transmitted>0</internal-mac-transmitted> + <sqe-test>0</sqe-test> + <symbol>0</symbol> + </error> + </ethernet-like-medium> + <packet-size> + <octets-64>0</octets-64> + <octets-65-to-127>0</octets-65-to-127> + <octets-128-to-255>0</octets-128-to-255> + <octets-256-to-511>0</octets-256-to-511> + <octets-512-to-1023>0</octets-512-to-1023> + <octets-1024-to-1518>0</octets-1024-to-1518> + <octets-1519-to-max>0</octets-1519-to-max> + </packet-size> + </statistics> + <symbol-monitor> + <current-alarms/> + <total-errors>0</total-errors> + </symbol-monitor> + <access> + <available-bandwidth>0</available-bandwidth> + <booked-bandwidth>0</booked-bandwidth> + </access> + <dot1x> + <authenticator-pae-state>force-authorized</authenticator-pae-state> + <backend-authentication-state>initialize</backend-authentication-state> + <port-status>authorized</port-status> + <statistics> + <received> + <bad-eap-length-frames>0</bad-eap-length-frames> + <last-source-mac-address>00:00:00:00:00:00</last-source-mac-address> + <last-version>0</last-version> + <logoff-frames>0</logoff-frames> + <response-frames>0</response-frames> + <response-id-frames>0</response-id-frames> + <start-frames>0</start-frames> + <valid-frames>0</valid-frames> + <unknown-frames>0</unknown-frames> + </received> + <transmitted> + <request-frames>0</request-frames> + <request-id-frames>0</request-id-frames> + <total-frames>0</total-frames> + </transmitted> + </statistics> + </dot1x> + </ethernet> + </port> + <port> + <port-id>B/1</port-id> + <statistics> + <in-discards>0</in-discards> + <in-errors>0</in-errors> + <in-octets>4413786</in-octets> + <in-packets>65906</in-packets> + <in-unknown-protocol-discards>0</in-unknown-protocol-discards> + <in-broadcast-packets>63809</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>2097</in-unicast-packets> + <out-discards>0</out-discards> + <out-errors>0</out-errors> + <out-octets>37056</out-octets> + <out-packets>579</out-packets> + <out-broadcast-packets>5</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>574</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>7</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>63809</in-broadcast-packets> + <in-multicast-packets>0</in-multicast-packets> + <in-unicast-packets>2097</in-unicast-packets> + <in-errors>0</in-errors> + <in-octets>4413786</in-octets> + <in-utilization>0</in-utilization> + <out-broadcast-packets>5</out-broadcast-packets> + <out-multicast-packets>0</out-multicast-packets> + <out-unicast-packets>574</out-unicast-packets> + <out-errors>0</out-errors> + <out-octets>37056</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>63814</total-broadcast-packets> + <total-multicast-packets>0</total-multicast-packets> + <total-octets>4450842</total-octets> + <total-packets>66485</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>20877</octets-64> + <octets-65-to-127>45608</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>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> + <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:46:30.3Z</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>34</in-packets> + <in-octets>4448</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>34</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>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>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>0</in-packets> + <in-octets>0</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + <out-discard-dbcast-packets>0</out-discard-dbcast-packets> + <out-discard-dbcast-octets>0</out-discard-dbcast-octets> + <in-ip-helper-redirects-packets>0</in-ip-helper-redirects-packets> + <in-ip-helper-redirects-octets>0</in-ip-helper-redirects-octets> + </statistics> + <primary> + <oper-address>62.40.119.6</oper-address> + <creation-origin>manual</creation-origin> + </primary> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>2</icmp6-in-msgs> + <icmp6-in-errors>2</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>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>2</icmp6-out-msgs> + <icmp6-out-errors>2</icmp6-out-errors> + <icmp6-out-dest-unreachables>2</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::6</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab::6</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + </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.3Z</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>90222287</out-packets> + <out-octets>12240526681</out-octets> + <out-discard-packets>2</out-discard-packets> + <out-discard-octets>134</out-discard-octets> + <in-packets>13266652</in-packets> + <in-octets>2291891001</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>1607525142358</out-packets> + <out-octets>2417038511422129</out-octets> + <in-packets>931380173227</in-packets> + <in-octets>1312858795109915</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>267444</icmp-in-msgs> + <icmp-in-errors>6</icmp-in-errors> + <icmp-in-dest-unreachables>3</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>0</icmp-in-echos> + <icmp-in-echo-replies>267438</icmp-in-echo-replies> + <icmp-in-time-exceeds>3</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>0</icmp-in-timestamps> + <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies> + <icmp-in-address-masks>0</icmp-in-address-masks> + <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies> + <icmp-in-parm-problems>0</icmp-in-parm-problems> + <icmp-out-msgs>471379</icmp-out-msgs> + <icmp-out-errors>1946</icmp-out-errors> + <icmp-out-dest-unreachables>1667</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>469433</icmp-out-echos> + <icmp-out-echo-replies>0</icmp-out-echo-replies> + <icmp-out-time-exceeds>279</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>87658993</out-packets> + <out-octets>11947026738</out-octets> + <out-discard-packets>2</out-discard-packets> + <out-discard-octets>134</out-discard-octets> + <in-packets>200636054</in-packets> + <in-octets>135381256213</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.116</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.117</ipv4-address> + <oper-state>up</oper-state> + <mac-address>90:ec:e3:30:d3:eb</mac-address> + <type>dynamic</type> + <timer>13072</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>498028</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>249146</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>248882</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>499447</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>250303</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>249144</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::1ac3:ff:fe91:fe5f</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>2563294</out-packets> + <out-octets>293499943</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::79</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::79</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::92ec:e3ff:fe30:d3eb</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>90:ec:e3:30:d3:eb</mac-address> + <type>dynamic</type> + <timer>21</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + <if-index>5</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-10T14:13:50.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> + <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>1556469392</out-packets> + <out-octets>819057862060</out-octets> + <out-discard-packets>108</out-discard-packets> + <out-discard-octets>12420</out-discard-octets> + <in-packets>107466099</in-packets> + <in-octets>13604121569</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>1228935</out-packets> + <out-octets>169180353</out-octets> + <in-packets>1935634</in-packets> + <in-octets>1030684535</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>672906</icmp-in-msgs> + <icmp-in-errors>115037</icmp-in-errors> + <icmp-in-dest-unreachables>115028</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>478010</icmp-in-echos> + <icmp-in-echo-replies>79859</icmp-in-echo-replies> + <icmp-in-time-exceeds>9</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>558299</icmp-out-msgs> + <icmp-out-errors>412</icmp-out-errors> + <icmp-out-dest-unreachables>219</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>79880</icmp-out-echos> + <icmp-out-echo-replies>478007</icmp-out-echo-replies> + <icmp-out-time-exceeds>193</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>1555527426</out-packets> + <out-octets>818943617698</out-octets> + <out-discard-packets>108</out-discard-packets> + <out-discard-octets>12420</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.100</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.101</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:eb:3a:82</mac-address> + <type>dynamic</type> + <timer>14015</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>271710</icmp6-in-msgs> + <icmp6-in-errors>3186</icmp6-in-errors> + <icmp6-in-dest-unreachables>3186</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>7</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>320</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>268197</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>268532</icmp6-out-msgs> + <icmp6-out-errors>3</icmp6-out-errors> + <icmp6-out-dest-unreachables>3</icmp6-out-dest-unreachables> + <icmp6-out-admin-prohibs>0</icmp6-out-admin-prohibs> + <icmp6-out-time-exceeds>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>7</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>268202</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>320</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::1ac3:ff:fe91:fe5d</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>941966</out-packets> + <out-octets>114244362</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::59</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::59</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::22d8:bff:feeb:3a82</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:eb:3a:82</mac-address> + <type>dynamic</type> + <timer>8</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + <if-index>21</if-index> + <system-if-index>5</system-if-index> + <oper-state>up</oper-state> + <protocol>isis mpls rsvp pim</protocol> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-08T15:28:47.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>0</total-exceed-count> + <exit-conform-state-count>0</exit-conform-state-count> + </static-policer> + </distributed-cpu-protection> + <statistics> + <ip> + <out-packets>12448707989</out-packets> + <out-octets>11635753343798</out-octets> + <out-discard-packets>16</out-discard-packets> + <out-discard-octets>2496</out-discard-octets> + <in-packets>21017769</in-packets> + <in-octets>2886374463</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>8336013942467</out-packets> + <out-octets>12194815045939171</out-octets> + <in-packets>7294035603894</in-packets> + <in-octets>10474348191013906</in-octets> + </mpls> + </statistics> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>462353</icmp-in-msgs> + <icmp-in-errors>260325</icmp-in-errors> + <icmp-in-dest-unreachables>260324</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>9</icmp-in-echos> + <icmp-in-echo-replies>202019</icmp-in-echo-replies> + <icmp-in-time-exceeds>1</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>198</icmp-out-msgs> + <icmp-out-errors>154</icmp-out-errors> + <icmp-out-dest-unreachables>109</icmp-out-dest-unreachables> + <icmp-out-redirects>0</icmp-out-redirects> + <icmp-out-echos>37</icmp-out-echos> + <icmp-out-echo-replies>7</icmp-out-echo-replies> + <icmp-out-time-exceeds>45</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>16</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>12441722145</out-packets> + <out-octets>11634937140294</out-octets> + <out-discard-packets>16</out-discard-packets> + <out-discard-octets>2496</out-discard-octets> + <in-packets>461635307</in-packets> + <in-octets>136619800858</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.123</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.122</ipv4-address> + <oper-state>up</oper-state> + <mac-address>9c:e0:41:60:f9:30</mac-address> + <type>dynamic</type> + <timer>6892</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>537318</icmp6-in-msgs> + <icmp6-in-errors>2</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>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>268355</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>268961</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>537328</icmp6-out-msgs> + <icmp6-out-errors>6</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>6</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>268967</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>268355</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::1ac3:ff:fe91:fe60</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>6985844</out-packets> + <out-octets>816203504</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::86</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::86</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::9ee0:41ff:fe60:f930</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>9c:e0:41:60:f9:30</mac-address> + <type>dynamic</type> + <timer>17</timer> + </neighbor> + </neighbor-discovery> + </ipv6> + </interface> + <interface> + <interface-name>lag-2.0</interface-name> + <if-index>22</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-11-19T09:17:51.5Z</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>819335593387</out-packets> + <out-octets>398685386049599</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>17114878</in-packets> + <in-octets>1313963206</in-octets> + <urpf-check-fail-packets>0</urpf-check-fail-packets> + <urpf-check-fail-octets>0</urpf-check-fail-octets> + </ip> + <mpls> + <out-packets>4214978960540</out-packets> + <out-octets>6199721884229573</out-octets> + <in-packets>4764351934331</in-packets> + <in-octets>7030829514744473</in-octets> + </mpls> + </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>2013</icmp-out-msgs> + <icmp-out-errors>2013</icmp-out-errors> + <icmp-out-dest-unreachables>2007</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>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>819331685224</out-packets> + <out-octets>398684934453506</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>764851264662</in-packets> + <in-octets>344233515959879</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.124</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.119.125</ipv4-address> + <oper-state>up</oper-state> + <mac-address>90:ec:e3:32:27:e6</mac-address> + <type>dynamic</type> + <timer>451</timer> + </neighbor> + </neighbor-discovery> + </ipv4> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>476479</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>10</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>239639</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>236830</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>476483</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>10</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>236834</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>239639</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::1ac3:ff:fe91:fe5a</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <statistics> + <out-packets>3908163</out-packets> + <out-octets>451596093</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::89</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:2::89</oper-address> + <creation-origin>manual</creation-origin> + <primary-preferred>true</primary-preferred> + </address> + <neighbor-discovery> + <neighbor> + <ipv6-address>fe80::92ec:e3ff:fe32:27e6</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>90:ec:e3:32:27:e6</mac-address> + <type>dynamic</type> + <timer>6</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-02-13T15:05:06.4Z</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>47212</in-packets> + <in-octets>3036086</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.30</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> + <sap> + <sap-id>lag-11: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>544738</received-valid-packets> + <received-valid-octets>42255762</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>544739</low-priority-offered-packets> + <low-priority-offered-octets>42255842</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>544739</aggregate-offered-packets> + <aggregate-offered-octets>42255842</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>544739</out-profile-forwarded-packets> + <out-profile-forwarded-octets>42255842</out-profile-forwarded-octets> + <aggregate-forwarded-packets>544739</aggregate-forwarded-packets> + <aggregate-forwarded-octets>42255842</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>544739</low-priority-offered-packets> + <low-priority-offered-octets>42255842</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>544739</out-profile-forwarded-packets> + <out-profile-forwarded-octets>42255842</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/1/c2/3</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>11256</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>720846</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>11256</aggregate-forwarded-packets> + <aggregate-forwarded-octets>720846</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>11256</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>720846</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/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> + <epipe> + <service-name>GEANT_EPIPE_60606</service-name> + <sap> + <sap-id>lag-11: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>318682</received-valid-packets> + <received-valid-octets>24720006</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>318682</low-priority-offered-packets> + <low-priority-offered-octets>24720006</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>318682</aggregate-offered-packets> + <aggregate-offered-octets>24720006</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>318682</out-profile-forwarded-packets> + <out-profile-forwarded-octets>24720006</out-profile-forwarded-octets> + <aggregate-forwarded-packets>318682</aggregate-forwarded-packets> + <aggregate-forwarded-octets>24720006</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>318682</low-priority-offered-packets> + <low-priority-offered-octets>24720006</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>318682</out-profile-forwarded-packets> + <out-profile-forwarded-octets>24720006</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/1/c2/3</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>6621</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>423954</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>6621</aggregate-forwarded-packets> + <aggregate-forwarded-octets>423954</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>6621</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>423954</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/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> + <epipe> + <service-name>GEANT_EPIPE_2022012001</service-name> + <sap> + <sap-id>lag-16:2231</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>308500</dropped-packets> + <dropped-octets>25450124</dropped-octets> + <received-valid-packets>6162258843487</received-valid-packets> + <received-valid-octets>8948950782374826</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>6162261543618</low-priority-offered-packets> + <low-priority-offered-octets>8948954785239223</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>6162261543618</aggregate-offered-packets> + <aggregate-offered-octets>8948954785239223</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>6162261543605</out-profile-forwarded-packets> + <out-profile-forwarded-octets>8948954785219437</out-profile-forwarded-octets> + <aggregate-forwarded-packets>6162261543605</aggregate-forwarded-packets> + <aggregate-forwarded-octets>8948954785219437</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>1272889502914</low-priority-offered-packets> + <low-priority-offered-octets>1856351287272362</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>1272889502901</out-profile-forwarded-packets> + <out-profile-forwarded-octets>1856351287252576</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/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/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> + </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>224312</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>337257616</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>4849545652205</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>6730726924335821</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>4849545652205</aggregate-forwarded-packets> + <aggregate-forwarded-octets>6730726924335821</aggregate-forwarded-octets> + <aggregate-dropped-packets>224312</aggregate-dropped-packets> + <aggregate-dropped-octets>337257616</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>4849545652205</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>6730726924335821</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>224312</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>337257616</out-exceed-profile-dropped-octets> + </profile> + </statistics> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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>3840</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> + <sap> + <sap-id>lag-11:2413</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>3790</dropped-packets> + <dropped-octets>370302</dropped-octets> + <received-valid-packets>2819023</received-valid-packets> + <received-valid-octets>275290574</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>2819025</low-priority-offered-packets> + <low-priority-offered-octets>275290770</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>2819025</aggregate-offered-packets> + <aggregate-offered-octets>275290770</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>2819025</out-profile-forwarded-packets> + <out-profile-forwarded-octets>275290770</out-profile-forwarded-octets> + <aggregate-forwarded-packets>2819025</aggregate-forwarded-packets> + <aggregate-forwarded-octets>275290770</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>647434</low-priority-offered-packets> + <low-priority-offered-octets>61723840</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>647434</out-profile-forwarded-packets> + <out-profile-forwarded-octets>61723840</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/1/c2/3</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>1213703</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>112535608</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>512339</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>44400714</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>1726042</aggregate-forwarded-packets> + <aggregate-forwarded-octets>156936322</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1213703</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>112535608</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>512339</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>44400714</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/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> + <epipe> + <service-name>GEANT_EPIPE_10GGBS_12016</service-name> + <sap> + <sap-id>lag-18</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:46:08.7Z</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:46:08.7Z</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>3</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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> + </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:46:08.7Z</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>3</source-fp> + <source-port>1/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> + </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_111111</service-name> + <sap> + <sap-id>lag-16:2218</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>402738</received-valid-packets> + <received-valid-octets>35440968</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>402743</low-priority-offered-packets> + <low-priority-offered-octets>35441410</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>402743</aggregate-offered-packets> + <aggregate-offered-octets>35441410</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>402743</out-profile-forwarded-packets> + <out-profile-forwarded-octets>35441410</out-profile-forwarded-octets> + <aggregate-forwarded-packets>402743</aggregate-forwarded-packets> + <aggregate-forwarded-octets>35441410</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>402743</low-priority-offered-packets> + <low-priority-offered-octets>35441410</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>402743</out-profile-forwarded-packets> + <out-profile-forwarded-octets>35441410</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/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/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> + </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>67138</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>5773868</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>67138</aggregate-forwarded-packets> + <aggregate-forwarded-octets>5773868</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </traffic-manager> + <queue> + <queue-id>1</queue-id> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>67138</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>5773868</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + </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.2201</interface-name> + <if-index>4</if-index> + <system-if-index>271</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-16T16:12:57.2Z</last-oper-change> + <sap> + <sap-id>lag-16:2201</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>12426908</dropped-packets> + <dropped-octets>1043859652</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>2450311</cpm-packets> + <cpm-octets>195822251</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:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>2787068</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>241473070</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>2787068</aggregate-forwarded-packets> + <aggregate-forwarded-octets>241473070</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>2787068</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>241473070</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>9</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>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.125.45</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.125.46</ipv4-address> + <oper-state>up</oper-state> + <mac-address>b2:79:db:fd:9b:29</mac-address> + <type>dynamic</type> + <timer>14398</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>384178</out-packets> + <out-octets>32082872</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>950172</icmp6-in-msgs> + <icmp6-in-errors>8</icmp6-in-errors> + <icmp6-in-dest-unreachables>8</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>804403</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>145735</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>1245347</icmp6-out-msgs> + <icmp6-out-errors>8</icmp6-out-errors> + <icmp6-out-dest-unreachables>8</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>440936</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>804403</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::1ac3:ff:fe91:fd18</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:99:1::79</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:99:1::79</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::7a</ipv6-address> + <state>delay</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>b2:79:db:fd:9b:29</mac-address> + <type>dynamic</type> + <timer>0</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>1629078</out-packets> + <out-octets>156770878</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>2013256</out-packets> + <out-octets>188853750</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>2450311</in-packets> + <in-octets>195822251</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>lt-lhcone-700.a</interface-name> + <if-index>7</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>9190</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-04T14:53:11.2Z</last-oper-change> + <sap> + <sap-id>lag-700:2</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>649070</received-valid-packets> + <received-valid-octets>54268020</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>649071</low-priority-offered-packets> + <low-priority-offered-octets>54268094</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>649071</aggregate-offered-packets> + <aggregate-offered-octets>54268094</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>681</cpm-packets> + <cpm-octets>43584</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>649071</out-profile-forwarded-packets> + <out-profile-forwarded-octets>54268094</out-profile-forwarded-octets> + <aggregate-forwarded-packets>649071</aggregate-forwarded-packets> + <aggregate-forwarded-octets>54268094</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>649071</low-priority-offered-packets> + <low-priority-offered-octets>54268094</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>649071</out-profile-forwarded-packets> + <out-profile-forwarded-octets>54268094</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>pxc-1.a</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>681</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>46308</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>649233</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>54219718</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>649914</aggregate-forwarded-packets> + <aggregate-forwarded-octets>54266026</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.a</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>2</source-card> + <source-fp>1</source-fp> + <source-port>pxc-2.a</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>681</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>46308</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>649233</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>54219718</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.126.18</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.126.19</ipv4-address> + <oper-state>up</oper-state> + <mac-address>18:c3:00:91:fd:1e</mac-address> + <type>dynamic</type> + <timer>5574</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>649232</out-packets> + <out-octets>54219625</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>649232</out-packets> + <out-octets>54219625</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>649752</in-packets> + <in-octets>54311678</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-11.100</interface-name> + <if-index>10</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>pim</protocol> + <oper-ip-mtu>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-02T11:06:49.2Z</last-oper-change> + <sap> + <sap-id>lag-11: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>2465</dropped-packets> + <dropped-octets>546047</dropped-octets> + <received-valid-packets>31849761417</received-valid-packets> + <received-valid-octets>43574666439125</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>30703966713</low-priority-offered-packets> + <low-priority-offered-octets>42947599031897</low-priority-offered-octets> + <uncolor-offered-packets>1149298054</uncolor-offered-packets> + <uncolor-offered-octets>632113929700</uncolor-offered-octets> + <managed-offered-packets>0</managed-offered-packets> + <managed-offered-octets>0</managed-offered-octets> + <aggregate-offered-packets>31853264767</aggregate-offered-packets> + <aggregate-offered-octets>43579712961597</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>2518774</cpm-packets> + <cpm-octets>258436833</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>31853264758</out-profile-forwarded-packets> + <out-profile-forwarded-octets>43579712947899</out-profile-forwarded-octets> + <aggregate-forwarded-packets>31853264758</aggregate-forwarded-packets> + <aggregate-forwarded-octets>43579712947899</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/1/c2/3</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/1/c2/3</source-port> + <dest-card>1</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/1/c2/3</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</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>30703966713</low-priority-offered-packets> + <low-priority-offered-octets>42947599031897</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>30703966704</out-profile-forwarded-packets> + <out-profile-forwarded-octets>42947599018199</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <multipoint-priority> + <combined-offered-packets>1143795054</combined-offered-packets> + <combined-offered-octets>629087279700</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>1143795054</out-profile-forwarded-packets> + <out-profile-forwarded-octets>629087279700</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>3328911</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>350784288</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>29068941026</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>40222455967013</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>29072269937</aggregate-forwarded-packets> + <aggregate-forwarded-octets>40222806751301</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>3328911</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>350784288</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>29068941026</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>40222455967013</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>100009</icmp-in-msgs> + <icmp-in-errors>6</icmp-in-errors> + <icmp-in-dest-unreachables>6</icmp-in-dest-unreachables> + <icmp-in-redirects>0</icmp-in-redirects> + <icmp-in-echos>0</icmp-in-echos> + <icmp-in-echo-replies>100003</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>100003</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>100003</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.124.217</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.124.218</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>13345</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>12578527717</out-packets> + <out-octets>17128821480947</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>330699</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>33730</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>217697</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>251430</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>217700</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>33730</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::1ac3:ff:fe91:fd18</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:14:10aa::9</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:14:10aa::9</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:14:10aa::a</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>10</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::22d8:b00:64f6:f870</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>13817</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>16491673136</out-packets> + <out-octets>23091152404838</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>29070200853</out-packets> + <out-octets>40219973885785</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>30709942404</in-packets> + <in-octets>42952841877002</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>lt-700.a</interface-name> + <if-index>12</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>9190</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-04T14:53:11.2Z</last-oper-change> + <sap> + <sap-id>lag-700: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>24545</dropped-packets> + <dropped-octets>3967400</dropped-octets> + <received-valid-packets>257848990</received-valid-packets> + <received-valid-octets>43542969890</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>257849107</low-priority-offered-packets> + <low-priority-offered-octets>43542988960</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>257849107</aggregate-offered-packets> + <aggregate-offered-octets>43542988960</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1667292</cpm-packets> + <cpm-octets>149378172</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>257849107</out-profile-forwarded-packets> + <out-profile-forwarded-octets>43542988960</out-profile-forwarded-octets> + <aggregate-forwarded-packets>257849107</aggregate-forwarded-packets> + <aggregate-forwarded-octets>43542988960</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.a</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>257849107</low-priority-offered-packets> + <low-priority-offered-octets>43542988960</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>257849107</out-profile-forwarded-packets> + <out-profile-forwarded-octets>43542988960</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>pxc-1.a</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.a</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>152962687</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>153574537748</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>56560802</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>54581547268</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>64</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>5158</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>56560866</aggregate-forwarded-packets> + <aggregate-forwarded-octets>54581552426</aggregate-forwarded-octets> + <aggregate-dropped-packets>152962687</aggregate-dropped-packets> + <aggregate-dropped-octets>153574537748</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.a</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>2</source-card> + <source-fp>1</source-fp> + <source-port>pxc-2.a</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>56560802</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>54581547268</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>64</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>5158</out-exceed-profile-forwarded-octets> + <in-inplus-profile-dropped-packets>152962687</in-inplus-profile-dropped-packets> + <in-inplus-profile-dropped-octets>153574537748</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>104</icmp-out-msgs> + <icmp-out-errors>104</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>104</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>3317</icmp-out-discards> + </statistics> + </icmp> + <primary> + <oper-address>83.97.90.34</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>83.97.90.35</ipv4-address> + <oper-state>up</oper-state> + <mac-address>18:c3:00:91:fd:1e</mac-address> + <type>dynamic</type> + <timer>7044</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>208517081</out-packets> + <out-octets>208055215424</out-octets> + <out-discard-packets>3317</out-discard-packets> + <out-discard-octets>495640</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>345043</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>172537</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>172506</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>345045</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>172508</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>172537</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::1ac3:ff:fe91:fd18</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:1::265</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:1::265</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::266</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9190</mtu> + <mac-address>18:c3:00:91:fd:1e</mac-address> + <type>dynamic</type> + <timer>4</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>1005779</out-packets> + <out-octets>100827626</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>209522860</out-packets> + <out-octets>208156043050</out-octets> + <out-discard-packets>3317</out-discard-packets> + <out-discard-octets>495640</out-discard-octets> + <in-packets>259516517</in-packets> + <in-octets>43692386339</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:2210</interface-name> + <if-index>16</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>9174</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-25T16:38:24.4Z</last-oper-change> + <sap> + <sap-id>lag-16:2210</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>66</dropped-packets> + <dropped-octets>5174</dropped-octets> + <received-valid-packets>649232</received-valid-packets> + <received-valid-octets>54219625</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>649233</low-priority-offered-packets> + <low-priority-offered-octets>54219718</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>649233</aggregate-offered-packets> + <aggregate-offered-octets>54219718</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1716062</cpm-packets> + <cpm-octets>148830704</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>649233</out-profile-forwarded-packets> + <out-profile-forwarded-octets>54219718</out-profile-forwarded-octets> + <aggregate-forwarded-packets>649233</aggregate-forwarded-packets> + <aggregate-forwarded-octets>54219718</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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>649233</low-priority-offered-packets> + <low-priority-offered-octets>54219718</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>649233</out-profile-forwarded-packets> + <out-profile-forwarded-octets>54219718</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>1721921</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>158310115</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>649007</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>54262936</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2370928</aggregate-forwarded-packets> + <aggregate-forwarded-octets>212573051</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1721921</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>158310115</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>649007</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>54262936</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>1816</icmp-in-msgs> + <icmp-in-errors>1816</icmp-in-errors> + <icmp-in-dest-unreachables>1816</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.124.157</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.124.158</ipv4-address> + <oper-state>up</oper-state> + <mac-address>5e:37:df:7a:b9:db</mac-address> + <type>dynamic</type> + <timer>14394</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>1301579</out-packets> + <out-octets>110602195</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>475942</icmp6-in-msgs> + <icmp6-in-errors>1268</icmp6-in-errors> + <icmp6-in-dest-unreachables>1268</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>231357</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>243302</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>479743</icmp6-out-msgs> + <icmp6-out-errors>1268</icmp6-out-errors> + <icmp6-out-dest-unreachables>1268</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>247118</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>231357</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::1ac3:ff:fe91:fd18</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:99:1::39</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:99:1::39</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::3a</ipv6-address> + <state>reachable</state> + <is-router>false</is-router> + <mtu>9174</mtu> + <mac-address>5e:37:df:7a:b9:db</mac-address> + <type>dynamic</type> + <timer>7</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::5c37:dfff:fe7a:b9db</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9174</mtu> + <mac-address>5e:37:df:7a:b9:db</mac-address> + <type>dynamic</type> + <timer>14080</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>950633</out-packets> + <out-octets>93898162</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>2252212</out-packets> + <out-octets>204500357</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>2365295</in-packets> + <in-octets>203050422</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-17.251</interface-name> + <if-index>23</if-index> + <system-if-index>273</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-22T11:02:41.3Z</last-oper-change> + <sap> + <sap-id>lag-17:251</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>2656</dropped-packets> + <dropped-octets>387911</dropped-octets> + <received-valid-packets>29066289476</received-valid-packets> + <received-valid-octets>40218640338061</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>29069018283</low-priority-offered-packets> + <low-priority-offered-octets>40222427428380</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>29069018283</aggregate-offered-packets> + <aggregate-offered-octets>40222427428380</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>766572</cpm-packets> + <cpm-octets>78320941</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>29069018283</out-profile-forwarded-packets> + <out-profile-forwarded-octets>40222427428380</out-profile-forwarded-octets> + <aggregate-forwarded-packets>29069018283</aggregate-forwarded-packets> + <aggregate-forwarded-octets>40222427428380</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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/1/c2/4</source-port> + <dest-card>1</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/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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>29069018283</low-priority-offered-packets> + <low-priority-offered-octets>40222427428380</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>29069018283</out-profile-forwarded-packets> + <out-profile-forwarded-octets>40222427428380</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/4</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>718081</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>76345316</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>31747019019</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>43520743311840</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>31747737100</aggregate-forwarded-packets> + <aggregate-forwarded-octets>43520819657156</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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>718081</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>76345316</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>31747019019</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>43520743311840</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>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>7</icmp-out-msgs> + <icmp-out-errors>5</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>5</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.125.134</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.125.135</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:f6:f8:6e</mac-address> + <type>dynamic</type> + <timer>13725</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>17112501152</out-packets> + <out-octets>23436694394414</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>100043</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>6</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>8757</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>66494</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>75257</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>6</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>66494</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>8757</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::1ac3:ff:fe91:fd18</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:99:1::61</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:99:1::61</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::62</ipv6-address> + <state>reachable</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:f6:f8:6e</mac-address> + <type>dynamic</type> + <timer>15</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>14632288548</out-packets> + <out-octets>20079861745157</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>31744789700</out-packets> + <out-octets>43516556139571</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>29072340716</in-packets> + <in-octets>40225946391459</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>dsc.0</interface-name> + <if-index>24</if-index> + <system-if-index>277</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol>igmp pim</protocol> + <oper-ip-mtu>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2025-01-27T13:34:16.0Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>4</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>2</icmp-in-echo-replies> + <icmp-in-time-exceeds>0</icmp-in-time-exceeds> + <icmp-in-src-quenches>0</icmp-in-src-quenches> + <icmp-in-timestamps>0</icmp-in-timestamps> + <icmp-in-timestamp-replies>0</icmp-in-timestamp-replies> + <icmp-in-address-masks>0</icmp-in-address-masks> + <icmp-in-address-mask-replies>0</icmp-in-address-mask-replies> + <icmp-in-parm-problems>0</icmp-in-parm-problems> + <icmp-out-msgs>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.0.2.112</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>109618</out-discard-packets> + <out-discard-octets>5536610</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>109618</out-discard-packets> + <out-discard-octets>5536610</out-discard-octets> + <in-packets>4</in-packets> + <in-octets>336</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-16.2223</interface-name> + <if-index>2</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>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-11T11:42:55.9Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>105</icmp-in-msgs> + <icmp-in-errors>105</icmp-in-errors> + <icmp-in-dest-unreachables>105</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.126.8</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.126.9</ipv4-address> + <oper-state>up</oper-state> + <mac-address>b2:79:db:fd:9b:29</mac-address> + <type>dynamic</type> + <timer>13718</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>3007963</out-packets> + <out-octets>226852371</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:2223</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1305113</cpm-packets> + <cpm-octets>112903056</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:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>3865489</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>309448056</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>3865489</aggregate-forwarded-packets> + <aggregate-forwarded-octets>309448056</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>3865489</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>309448056</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>322097</icmp6-in-msgs> + <icmp6-in-errors>71</icmp6-in-errors> + <icmp6-in-dest-unreachables>71</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>130818</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>191193</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>322335</icmp6-out-msgs> + <icmp6-out-errors>71</icmp6-out-errors> + <icmp6-out-dest-unreachables>71</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>191446</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>130818</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::1ac3:ff:fe91:fe63</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:111:1::89</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:111:1::89</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::8a</ipv6-address> + <state>reachable</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>b2:79:db:fd:9b:29</mac-address> + <type>dynamic</type> + <timer>22</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::b079:dbff:fefd:9b29</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>b2:79:db:fd:9b:29</mac-address> + <type>dynamic</type> + <timer>1168</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>770028</out-packets> + <out-octets>76645771</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>3777991</out-packets> + <out-octets>303498142</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1305113</in-packets> + <in-octets>112903056</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-11.111</interface-name> + <if-index>8</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>9000</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-12-02T11:06:49.2Z</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>5</icmp-out-msgs> + <icmp-out-errors>5</icmp-out-errors> + <icmp-out-dest-unreachables>5</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.126.76</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.126.77</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>14304</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>4466267</out-packets> + <out-octets>350627351</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-11: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>159</dropped-packets> + <dropped-octets>15323</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1639865</cpm-packets> + <cpm-octets>173173389</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:46:08.7Z</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/1/c2/3</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/1/c2/3</source-port> + <dest-card>1</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/1/c2/3</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>5415919</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>459792333</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>5415919</aggregate-forwarded-packets> + <aggregate-forwarded-octets>459792333</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>5415919</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>459792333</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>250978</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>33732</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>217240</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>250973</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>217242</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>33731</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::df:59d4:1fe4:f42b</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:111:1::31</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:111:1::31</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::32</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>13</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::22d8:b00:6ff6:f870</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>9000</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>14166</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>941385</out-packets> + <out-octets>108602737</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>5407652</out-packets> + <out-octets>459230088</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1639865</in-packets> + <in-octets>173173389</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>lt-lhcone-701.b</interface-name> + <if-index>15</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>9190</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-04T14:53:11.1Z</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>62.40.126.19</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.126.18</ipv4-address> + <oper-state>up</oper-state> + <mac-address>18:c3:00:91:fd:1d</mac-address> + <type>dynamic</type> + <timer>5574</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>649070</out-packets> + <out-octets>54268020</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-701:2</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>649886</cpm-packets> + <cpm-octets>51664129</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:46:08.7Z</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>pxc-1.b</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>649752</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>54314402</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>649752</aggregate-forwarded-packets> + <aggregate-forwarded-octets>54314402</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.b</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>2</source-card> + <source-fp>1</source-fp> + <source-port>pxc-2.b</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>649752</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>54314402</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>649070</out-packets> + <out-octets>54268020</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>649886</in-packets> + <in-octets>51664129</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-17.111</interface-name> + <if-index>25</if-index> + <system-if-index>275</system-if-index> + <oper-state>dormant</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-11-04T14:46:08.7Z</last-oper-change> + <ipv4> + <oper-state>down</oper-state> + <down-reason>address-or-parent-not-ready</down-reason> + <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> + <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> + <sap> + <sap-id>lag-17: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>947227</dropped-packets> + <dropped-octets>89917270</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>207881</cpm-packets> + <cpm-octets>13304384</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:46:08.7Z</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/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/1/c2/4</source-port> + <dest-card>1</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/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/4</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>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:46:08.7Z</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/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>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> + </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>address-or-parent-not-ready 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>207881</in-packets> + <in-octets>13304384</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>pop-lan</service-name> + <interface> + <interface-name>lag-3.533</interface-name> + <if-index>11</if-index> + <system-if-index>269</system-if-index> + <oper-state>lower-layer-down</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-04T14:46:08.7Z</last-oper-change> + <ipv4> + <oper-state>down</oper-state> + <down-reason>associated-object-not-ready</down-reason> + <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.17.255.9</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> + <vpls> + <vpls-name>SNM_ACCESS_POP_LAN</vpls-name> + <status>up</status> + <failed-reason/> + </vpls> + <ipv6> + <oper-state>down</oper-state> + <down-reason>associated-object-not-ready 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> + </vprn> + <vprn> + <service-name>SNM_OPTICAL_MGMT</service-name> + <interface> + <interface-name>lag-16.103</interface-name> + <if-index>17</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>9174</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-29T16:21:22.2Z</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>172.17.22.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> + <vrrp> + <virtual-router-id>8</virtual-router-id> + <authentication-type>no-authentication</authentication-type> + <oper-state>up</oper-state> + <router-state>master</router-state> + <virtual-mac>00:00:5e:00:01:08</virtual-mac> + <master-ip-address>172.17.22.2</master-ip-address> + <primary-ip-address>172.17.22.2</primary-ip-address> + <up-time>2024-11-29T16:21:22.2Z</up-time> + <in-use-priority>150</in-use-priority> + <master-since>2024-11-29T16:21:25.6Z</master-since> + <master-priority>150</master-priority> + <master-down-interval>0</master-down-interval> + <master-down-timer>0</master-down-timer> + <in-use-advertisement-interval>1000</in-use-advertisement-interval> + <init-timer>0</init-timer> + <down-reason>unknown</down-reason> + <master> + <primary-ip-address>172.17.22.2</primary-ip-address> + <last-seen>2024-11-29T16:21:25.6Z</last-seen> + <auth-sequence>0</auth-sequence> + <ip-list-match>true</ip-list-match> + <statistics> + <messages-received>0</messages-received> + </statistics> + </master> + <statistics> + <authentication-failure-packets-received>0</authentication-failure-packets-received> + <authentication-type-mismatch-packets-received>0</authentication-type-mismatch-packets-received> + <address-list-discards>0</address-list-discards> + <become-master>3</become-master> + <advertisements-received>0</advertisements-received> + <advertisements-sent>9909723</advertisements-sent> + <advertisement-interval-errors>0</advertisement-interval-errors> + <ttl-error-packets-received>0</ttl-error-packets-received> + <zero-priority-packets-received>0</zero-priority-packets-received> + <zero-priority-packets-sent>2</zero-priority-packets-sent> + <invalid-type-packets-received>0</invalid-type-packets-received> + <address-list-error-packets-received>0</address-list-error-packets-received> + <error-length-packets-received>0</error-length-packets-received> + <invalid-authentication-type-packets-received>0</invalid-authentication-type-packets-received> + <preempt-events>0</preempt-events> + <preempted-events>0</preempted-events> + <master-changes>3</master-changes> + <advertise-interval-discards>0</advertise-interval-discards> + <total-discards>0</total-discards> + </statistics> + </vrrp> + <statistics> + <out-packets>9909722</out-packets> + <out-octets>634222208</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:103</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>45344428</dropped-packets> + <dropped-octets>16832305426</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>579520</cpm-packets> + <cpm-octets>37025383</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:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>9909734</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>634223020</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>9909734</aggregate-forwarded-packets> + <aggregate-forwarded-octets>634223020</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>9909734</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>634223020</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>9909722</out-packets> + <out-octets>634222208</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>579520</in-packets> + <in-octets>37025383</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.2217</interface-name> + <if-index>6</if-index> + <system-if-index>272</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-12-31T09:05:50.0Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>38</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>36</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>5</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>192.168.121.0</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>192.168.121.1</ipv4-address> + <oper-state>up</oper-state> + <mac-address>f2:e2:ad:af:d1:94</mac-address> + <type>dynamic</type> + <timer>14390</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>2686968083200</out-packets> + <out-octets>3928161098142433</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:2217</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>9963</dropped-packets> + <dropped-octets>1145454</dropped-octets> + <received-valid-packets>2721520451391</received-valid-packets> + <received-valid-octets>3892050474805319</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>2721520451391</low-priority-offered-packets> + <low-priority-offered-octets>3892050474805319</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>2721520451391</aggregate-offered-packets> + <aggregate-offered-octets>3892050474805319</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>23182</cpm-packets> + <cpm-octets>1391746</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>2721520451391</out-profile-forwarded-packets> + <out-profile-forwarded-octets>3892050474805319</out-profile-forwarded-octets> + <aggregate-forwarded-packets>2721520451391</aggregate-forwarded-packets> + <aggregate-forwarded-octets>3892050474805319</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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>2721520451391</low-priority-offered-packets> + <low-priority-offered-octets>3892050474805319</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>2721520451391</out-profile-forwarded-packets> + <out-profile-forwarded-octets>3892050474805319</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>4607405</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>6879915850</out-exceed-profile-dropped-octets> + <in-inplus-profile-forwarded-packets>23165</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>1578590</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2686963475786</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>3928154218222593</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2686963498951</aggregate-forwarded-packets> + <aggregate-forwarded-octets>3928154219801183</aggregate-forwarded-octets> + <aggregate-dropped-packets>4607405</aggregate-dropped-packets> + <aggregate-dropped-octets>6879915850</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>23165</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>1578590</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>2686963475786</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>3928154218222593</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>4607405</out-exceed-profile-dropped-packets> + <out-exceed-profile-dropped-octets>6879915850</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>2686968083200</out-packets> + <out-octets>3928161098142433</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>2721520474573</in-packets> + <in-octets>3892050476197065</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>lt-701.b</interface-name> + <if-index>13</if-index> + <system-if-index>265</system-if-index> + <oper-state>up</oper-state> + <mcast-net-domain-egr>not-applicable</mcast-net-domain-egr> + <protocol/> + <oper-ip-mtu>9190</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-04T14:53:11.1Z</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>83.97.90.35</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>83.97.90.34</ipv4-address> + <oper-state>up</oper-state> + <mac-address>18:c3:00:91:fd:1d</mac-address> + <type>dynamic</type> + <timer>7043</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>258534241</out-packets> + <out-octets>43602106804</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-701: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>54614004</dropped-packets> + <dropped-octets>54398099702</dropped-octets> + <received-valid-packets>279738</received-valid-packets> + <received-valid-octets>27421337</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>279738</low-priority-offered-packets> + <low-priority-offered-octets>27421337</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>279738</aggregate-offered-packets> + <aggregate-offered-octets>27421337</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1667102</cpm-packets> + <cpm-octets>149361227</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>279738</out-profile-forwarded-packets> + <out-profile-forwarded-octets>27421337</out-profile-forwarded-octets> + <aggregate-forwarded-packets>279738</aggregate-forwarded-packets> + <aggregate-forwarded-octets>27421337</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-1.b</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>1</dest-card> + <dest-fp>3</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>2</dest-card> + <dest-fp>1</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>2</dest-card> + <dest-fp>2</dest-fp> + <dest-tap-offset>1</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>279738</low-priority-offered-packets> + <low-priority-offered-octets>27421337</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>279738</out-profile-forwarded-packets> + <out-profile-forwarded-octets>27421337</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>pxc-1.b</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>pxc-2.b</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</dest-tap-offset> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <adapted-admin-cbs>0</adapted-admin-cbs> + <operational-mbs>31457280</operational-mbs> + <depth>0</depth> + <operational-cir>0</operational-cir> + <operational-fir>0</operational-fir> + <operational-pir>max</operational-pir> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</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>1667125</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>156030762</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>257873759</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>43546974701</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>259540884</aggregate-forwarded-packets> + <aggregate-forwarded-octets>43703005463</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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>pxc-1.b</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>2</source-card> + <source-fp>1</source-fp> + <source-port>pxc-2.b</source-port> + <adapted-admin-mbs>31457280</adapted-admin-mbs> + <exceed-droptail>24903680</exceed-droptail> + <high-droptail>31457280</high-droptail> + <high-plus-droptail>31457280</high-plus-droptail> + <low-droptail>28180480</low-droptail> + <operational-cbs>0</operational-cbs> + <operational-cir>0</operational-cir> + <operational-mbs>31457280</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>1667125</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>156030762</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>257873759</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>43546974701</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>345043</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>172506</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>172537</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>345045</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>172539</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>172506</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::94:54c6:6065:2e45</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:1::266</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:1::266</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::265</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>9190</mtu> + <mac-address>18:c3:00:91:fd:1d</mac-address> + <type>dynamic</type> + <timer>3</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>1005719</out-packets> + <out-octets>100814022</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>259539960</out-packets> + <out-octets>43702920826</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1946840</in-packets> + <in-octets>176782564</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-11.333</interface-name> + <if-index>14</if-index> + <system-if-index>278</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>2025-02-26T09:18:47.3Z</last-oper-change> + <ingress> + <statistics> + <policy-accounting> + <destination-class> + <index>1</index> + <forwarded-packets>312709</forwarded-packets> + <forwarded-bytes>465173092</forwarded-bytes> + </destination-class> + <destination-class> + <index>2</index> + <forwarded-packets>0</forwarded-packets> + <forwarded-bytes>0</forwarded-bytes> + </destination-class> + <destination-class> + <index>3</index> + <forwarded-packets>0</forwarded-packets> + <forwarded-bytes>0</forwarded-bytes> + </destination-class> + </policy-accounting> + </statistics> + </ingress> + <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>83.97.89.73</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>83.97.89.74</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>14083</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>149002</out-packets> + <out-octets>170518739</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-11:333</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>56991</dropped-packets> + <dropped-octets>3647542</dropped-octets> + <received-valid-packets>312709</received-valid-packets> + <received-valid-octets>472052690</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>312709</low-priority-offered-packets> + <low-priority-offered-octets>472052690</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>312709</aggregate-offered-packets> + <aggregate-offered-octets>472052690</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>13387</cpm-packets> + <cpm-octets>1413584</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>312709</out-profile-forwarded-packets> + <out-profile-forwarded-octets>472052690</out-profile-forwarded-octets> + <aggregate-forwarded-packets>312709</aggregate-forwarded-packets> + <aggregate-forwarded-octets>472052690</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/1/c2/3</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/1/c2/3</source-port> + <dest-card>1</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/1/c2/3</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</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>312709</low-priority-offered-packets> + <low-priority-offered-octets>472052690</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>312709</out-profile-forwarded-packets> + <out-profile-forwarded-octets>472052690</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/3</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>356808</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>475814870</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>356808</aggregate-forwarded-packets> + <aggregate-forwarded-octets>475814870</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>356808</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>475814870</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> + <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>2087</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>303</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>1784</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>2089</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>1786</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>303</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::1ac3:ff:fe91:fe68</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:7f8:3c::35</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:7f8:3c::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:7f8:3c::36</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>1500</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>13</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::22d8:b01:4df6:f870</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>20:d8:0b:f6:f8:70</mac-address> + <type>dynamic</type> + <timer>13862</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>207735</out-packets> + <out-octets>305291297</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>356737</out-packets> + <out-octets>475810036</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>326096</in-packets> + <in-octets>473466274</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.2219</interface-name> + <if-index>19</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>1500</oper-ip-mtu> + <creation-origin>manual</creation-origin> + <last-oper-change>2024-11-29T16:56:33.4Z</last-oper-change> + <ipv4> + <oper-state>up</oper-state> + <icmp> + <statistics> + <icmp-in-msgs>4</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>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>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.17</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>62.40.102.18</ipv4-address> + <oper-state>up</oper-state> + <mac-address>00:1d:a1:03:54:1b</mac-address> + <type>dynamic</type> + <timer>8361</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>691067</out-packets> + <out-octets>50688588</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:2219</sap-id> + <oper-state>up</oper-state> + <oper-flags/> + <mirror-state>disabled</mirror-state> + <template-used/> + <oper-dist-cpu-prot-policy>ARP_POLICE</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>148</dropped-packets> + <dropped-octets>13110</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:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1681980</cpm-packets> + <cpm-octets>136716372</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:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>1592416</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>133576543</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>1592416</aggregate-forwarded-packets> + <aggregate-forwarded-octets>133576543</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1592416</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>133576543</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> + <distributed-cpu-protection> + <static-policer> + <name>RATE_ARP</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> + </sap> + <ipv6> + <oper-state>up</oper-state> + <icmp6> + <statistics> + <icmp6-in-msgs>267571</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>56582</icmp6-in-rtr-advertisements> + <icmp6-in-nbr-solicits>3</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>210986</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>211028</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>211025</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>3</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::37:8b1c:8846:f04c</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:799:1ab:15::1</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:799:1ab:15::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:15::2</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>00:1d:a1:03:54:1b</mac-address> + <type>dynamic</type> + <timer>14399</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::21d:a1ff:fe03:541b</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>00:1d:a1:03:54:1b</mac-address> + <type>dynamic</type> + <timer>8568</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>900653</out-packets> + <out-octets>82840627</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>1591720</out-packets> + <out-octets>133529215</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>1681980</in-packets> + <in-octets>136716372</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.2220</interface-name> + <if-index>20</if-index> + <system-if-index>264</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-29T16:00:36.6Z</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>212.133.7.166</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>212.133.7.165</ipv4-address> + <oper-state>up</oper-state> + <mac-address>00:24:97:a7:56:1b</mac-address> + <type>dynamic</type> + <timer>944</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>1124853</out-packets> + <out-octets>245139016</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:2220</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>124</dropped-packets> + <dropped-octets>11088</dropped-octets> + <received-valid-packets>634401</received-valid-packets> + <received-valid-octets>499723434</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>634401</low-priority-offered-packets> + <low-priority-offered-octets>499723434</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>634401</aggregate-offered-packets> + <aggregate-offered-octets>499723434</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>1644966</cpm-packets> + <cpm-octets>133523301</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>634401</out-profile-forwarded-packets> + <out-profile-forwarded-octets>499723434</out-profile-forwarded-octets> + <aggregate-forwarded-packets>634401</aggregate-forwarded-packets> + <aggregate-forwarded-octets>499723434</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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/1/c2/1</source-port> + <dest-card>1</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/1/c2/1</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/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/1/c2/2</source-port> + <dest-card>1</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/1/c2/2</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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> + <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>634401</low-priority-offered-packets> + <low-priority-offered-octets>499723434</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>634401</out-profile-forwarded-packets> + <out-profile-forwarded-octets>499723434</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/1</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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/1/c2/2</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>1592770</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>132733811</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>634363</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>499715354</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>2227133</aggregate-forwarded-packets> + <aggregate-forwarded-octets>632449165</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-port>1/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> + <statistics> + <profile> + <in-inplus-profile-forwarded-packets>1592770</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>132733811</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>634363</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>499715354</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>267483</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>56590</icmp6-in-rtr-advertisements> + <icmp6-in-nbr-solicits>5</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>210888</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>210930</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>210927</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>3</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::96:267c:f6cb:56bb</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:1900:5:2:2:0:8:5a56</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:1900:5:2:2:0:8:5a56</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:1900:5:2:2:0:8:5a55</ipv6-address> + <state>reachable</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>00:24:97:a7:56:1b</mac-address> + <type>dynamic</type> + <timer>22</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::224:97ff:fea7:561b</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>00:24:97:a7:56:1b</mac-address> + <type>dynamic</type> + <timer>5098</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>1101578</out-packets> + <out-octets>387262373</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>2226431</out-packets> + <out-octets>632401389</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>2279367</in-packets> + <in-octets>633246735</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-17.252</interface-name> + <if-index>26</if-index> + <system-if-index>276</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>2025-01-22T11:52:41.8Z</last-oper-change> + <ingress> + <statistics> + <policy-accounting> + <destination-class> + <index>1</index> + <forwarded-packets>0</forwarded-packets> + <forwarded-bytes>0</forwarded-bytes> + </destination-class> + <destination-class> + <index>2</index> + <forwarded-packets>0</forwarded-packets> + <forwarded-bytes>0</forwarded-bytes> + </destination-class> + <destination-class> + <index>3</index> + <forwarded-packets>0</forwarded-packets> + <forwarded-bytes>0</forwarded-bytes> + </destination-class> + </policy-accounting> + </statistics> + </ingress> + <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>5</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>5</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>5</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.90.20</oper-address> + <creation-origin>manual</creation-origin> + </primary> + <neighbor-discovery> + <neighbor> + <ipv4-address>83.97.90.21</ipv4-address> + <oper-state>up</oper-state> + <mac-address>20:d8:0b:f6:f8:6e</mac-address> + <type>dynamic</type> + <timer>13724</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>54923874</out-packets> + <out-octets>31747923728</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-17:252</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>935874</dropped-packets> + <dropped-octets>59905720</dropped-octets> + <received-valid-packets>5139</received-valid-packets> + <received-valid-octets>352080</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>5133</low-priority-offered-packets> + <low-priority-offered-octets>351444</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>5133</aggregate-offered-packets> + <aggregate-offered-octets>351444</aggregate-offered-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</last-cleared-time> + </statistics> + </forwarding-engine> + <traffic-manager> + <statistics> + <cpm-packets>756346</cpm-packets> + <cpm-octets>68985403</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>5133</out-profile-forwarded-packets> + <out-profile-forwarded-octets>351444</out-profile-forwarded-octets> + <aggregate-forwarded-packets>5133</aggregate-forwarded-packets> + <aggregate-forwarded-octets>351444</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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/1/c2/4</source-port> + <dest-card>1</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/1/c2/4</source-port> + <dest-card>1</dest-card> + <dest-fp>3</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/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/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>5133</low-priority-offered-packets> + <low-priority-offered-octets>351444</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>5133</out-profile-forwarded-packets> + <out-profile-forwarded-octets>351444</out-profile-forwarded-octets> + </unicast-priority> + </statistics> + </queue> + <queue> + <queue-id>11</queue-id> + <hardware-queue> + <source-card>1</source-card> + <source-fp>1</source-fp> + <source-tap-offset>1</source-tap-offset> + <source-port>1/1/c2/4</source-port> + <dest-card>0</dest-card> + <dest-fp>0</dest-fp> + <dest-tap-offset>0</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> + <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>516242</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>48080116</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>54706699</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>31729856556</out-exceed-profile-forwarded-octets> + <aggregate-forwarded-packets>55222941</aggregate-forwarded-packets> + <aggregate-forwarded-octets>31777936672</aggregate-forwarded-octets> + <aggregate-dropped-packets>0</aggregate-dropped-packets> + <aggregate-dropped-octets>0</aggregate-dropped-octets> + <last-cleared-time>2024-11-04T14:46:08.7Z</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/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>516242</in-inplus-profile-forwarded-packets> + <in-inplus-profile-forwarded-octets>48080116</in-inplus-profile-forwarded-octets> + <out-exceed-profile-forwarded-packets>54706699</out-exceed-profile-forwarded-packets> + <out-exceed-profile-forwarded-octets>31729856556</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>104664</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>11339</icmp6-in-nbr-solicits> + <icmp6-in-nbr-advertisements>68564</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>79905</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>68566</icmp6-out-nbr-solicits> + <icmp6-out-nbr-advertisements>11339</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::1ac3:ff:fe91:fe68</oper-address> + <address-state>preferred</address-state> + </link-local-address> + <address> + <ipv6-address>2001:798:1::241</ipv6-address> + <address-state>preferred</address-state> + <oper-address>2001:798:1::241</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::242</ipv6-address> + <state>reachable</state> + <is-router>true</is-router> + <mtu>1500</mtu> + <mac-address>20:d8:0b:f6:f8:6e</mac-address> + <type>dynamic</type> + <timer>1</timer> + </neighbor> + <neighbor> + <ipv6-address>fe80::22d8:b00:fcf6:f86e</ipv6-address> + <state>stale</state> + <is-router>false</is-router> + <mtu>1500</mtu> + <mac-address>20:d8:0b:f6:f8:6e</mac-address> + <type>dynamic</type> + <timer>13998</timer> + </neighbor> + </neighbor-discovery> + <statistics> + <out-packets>296476</out-packets> + <out-octets>29836660</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>55220350</out-packets> + <out-octets>31777760388</out-octets> + <out-discard-packets>0</out-discard-packets> + <out-discard-octets>0</out-discard-octets> + <in-packets>761479</in-packets> + <in-octets>69336847</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 dc67dba552865a9545aa0ca28cfb163ff61952fe..dcca66d488ae4c47f2f64daecf16c7ec59e52691 100644 --- a/test/interface_stats/test_interface_stats.py +++ b/test/interface_stats/test_interface_stats.py @@ -2,10 +2,11 @@ from datetime import datetime from unittest.mock import Mock, call, patch from brian_polling_manager import influx +from brian_polling_manager.interface_stats.juniper import JuniperRouterProcessor import pytest from brian_polling_manager.interface_stats import cli -from brian_polling_manager.interface_stats.cli import PointGroup, Vendor -from brian_polling_manager.interface_stats.vendors import common +from brian_polling_manager.interface_stats import common +from brian_polling_manager.interface_stats.common import PointGroup, RouterProcessor from lxml import etree import ncclient.manager @@ -25,6 +26,7 @@ def test_sanity_check_nokia_snapshot_data(all_nokia_routers): "rt0.ams.nl.geant.net", "rt0.lon2.uk.geant.net", "rt0.ath.gr.lab.office.geant.net", + "rt0.ams.nl.lab.office.geant.net", } @@ -89,79 +91,45 @@ class TestParseInterfaceXML: assert "found more than one element ./a" in record.message -def test_brian_point_counters(): +def test_counters_to_point(): now = datetime.now() - points = list( - common.brian_points( - router_fqdn="some.router", - interfaces=[ - {"name": "ae12", "brian": {"some": "fields"}}, - {"name": "ae12.1", "brian": {"more": "other fields"}}, - ], - timestamp=now, - measurement_name="blah", - ) - ) - - assert points == [ - { - "time": now.strftime("%Y-%m-%dT%H:%M:%SZ"), - "measurement": "blah", - "tags": {"hostname": "some.router", "interface_name": "ae12"}, - "fields": {"some": "fields"}, - }, - { - "time": now.strftime("%Y-%m-%dT%H:%M:%SZ"), - "measurement": "blah", - "tags": {"hostname": "some.router", "interface_name": "ae12.1"}, - "fields": {"more": "other fields"}, - }, - ] - - -def test_error_point_counters(): - now = datetime.now() - points = list( - common.error_points( - router_fqdn="some.router", - interfaces=[ - {"name": "ae12", "errors": {"some": "fields"}}, - ], - timestamp=now, - measurement_name="blah-errors", - ) - ) - - assert points == [ - { - "time": now.strftime("%Y-%m-%dT%H:%M:%SZ"), - "measurement": "blah-errors", - "tags": {"hostname": "some.router", "interface_name": "ae12"}, - "fields": {"some": "fields"}, - } - ] + assert common.counters_to_point( + router_fqdn="some.router", + interface_name="ae12", + counters={"some": "fields"}, + timestamp=now, + measurement="blah", + ) == { + "time": now.strftime("%Y-%m-%dT%H:%M:%SZ"), + "measurement": "blah", + "tags": {"hostname": "some.router", "interface_name": "ae12"}, + "fields": {"some": "fields"}, + } -def test_no_error_point_counters(): - now = datetime.now() - points = list( - common.error_points( - router_fqdn="some.router", - interfaces=[ +def test_error_point_generator(config): + class DummyProcessor(RouterProcessor): + def _interface_counters(self, *args, **kwargs): + return [ { "name": "ae12.1", }, - {"name": "ae12", "errors": {"some": "fields"}}, - ], + {"name": "ae12", PointGroup.ERROR: {"some": "fields"}}, + ] + + now = datetime.now() + points = list( + DummyProcessor("some.router", config).points( + point_group=PointGroup.ERROR, + interfaces=None, timestamp=now, - measurement_name="blah-errors", ) ) assert points == [ { "time": now.strftime("%Y-%m-%dT%H:%M:%SZ"), - "measurement": "blah-errors", + "measurement": "testenv_error_counters", "tags": {"hostname": "some.router", "interface_name": "ae12"}, "fields": {"some": "fields"}, } @@ -171,13 +139,8 @@ def test_no_error_point_counters(): @patch.object(cli.OutputMethod, "write_points") @pytest.mark.usefixtures("mocked_get_netconf") def test_main_for_all_juniper_routers( - write_points, juniper_router_fqdn, juniper_inventory, schemavalidate + write_points, juniper_router_fqdn, juniper_inventory, schemavalidate, config ): - config = { - "juniper": {"some": "params"}, - "brian-counters": {"influx": {"measurement": "brian"}}, - "error-counters": {"influx": {"measurement": "error"}}, - } total_points = 0 calls = 0 @@ -192,11 +155,8 @@ def test_main_for_all_juniper_routers( assert point["fields"] # must contain at least one field write_points.side_effect = validate - cli.main( - app_config_params=config, - router_fqdn=juniper_router_fqdn, - vendor=Vendor.JUNIPER, + processor=JuniperRouterProcessor(juniper_router_fqdn, config), interfaces=juniper_inventory[juniper_router_fqdn], ) @@ -226,12 +186,10 @@ def test_main_with_some_interfaces( "error-counters": {}, } cli.main( - config, - "mx1.ams.nl.geant.net", - Vendor.JUNIPER, + processor=JuniperRouterProcessor("mx1.ams.nl.geant.net", config), interfaces=["ifc1"], ) - assert process_router.call_args[1]["interfaces"] == ["ifc1"] + assert process_router.call_args[1]["interfaces"] == {"ifc1": {}} @patch.object(cli, "process_router") @@ -244,8 +202,10 @@ def test_main_with_all_interfaces_and_inprov_hosts( "brian-counters": {}, "error-counters": {}, } - cli.main(config, "mx1.ams.nl.geant.net", Vendor.JUNIPER) - assert process_router.call_args[1]["interfaces"] == ["ifc1", "ifc2"] + cli.main( + processor=JuniperRouterProcessor("mx1.ams.nl.geant.net", config), + ) + assert process_router.call_args[1]["interfaces"].keys() == {"ifc1", "ifc2"} @patch.object(cli, "process_router") @@ -257,7 +217,9 @@ def test_main_with_all_interfaces_no_inprov_hosts( "brian-counters": {"influx": None}, "error-counters": {"influx": None}, } - cli.main(config, "mx1.ams.nl.geant.net", Vendor.JUNIPER) + cli.main( + processor=JuniperRouterProcessor("mx1.ams.nl.geant.net", config), + ) assert process_router.call_args[1]["interfaces"] is None @@ -265,7 +227,7 @@ def test_main_with_all_interfaces_no_inprov_hosts( "point_group, url", [ (PointGroup.BRIAN, "/brian/endpoint"), - (PointGroup.ERRORS, "/error/endpoint"), + (PointGroup.ERROR, "/error/endpoint"), ], ) def test_loads_interfaces_from_endpoint(point_group, url, mocked_load_inventory): @@ -278,8 +240,8 @@ def test_loads_interfaces_from_endpoint(point_group, url, mocked_load_inventory) cli.load_interfaces( "mx1.ams.nl.geant.net", interfaces=cli.ALL_, - app_config_params=config, point_group=point_group, + config=config, ) assert mocked_load_inventory.call_args == call( url, @@ -288,6 +250,32 @@ def test_loads_interfaces_from_endpoint(point_group, url, mocked_load_inventory) ) +def test_loads_interfaces_for_gws_indirect_points(mocked_load_inventory): + mocked_load_inventory.return_value = [ + { + "name": "SOME_NAME", + "interface": "lag-11.333", + "hostname": "rt0.ams.nl", + } + ] + config = { + "inventory": ["some.inprov"], + "brian-counters": {"inventory-url": "/brian/endpoint"}, + "gws-indirect-counters": {"inventory-url": "/gws-indirect/endpoint"}, + } + cli.load_interfaces( + "rt0.ams.nl", + interfaces=cli.ALL_, + point_group=PointGroup.GWS_INDIRECT, + config=config, + ) + assert mocked_load_inventory.call_args == call( + config["gws-indirect-counters"]["inventory-url"], + config["inventory"], + cli.GWS_INDIRECT_SCHEMA, + ) + + @patch.object(cli, "influx_client") def test_write_points_to_influx(influx_client): points = [{"point": "one"}, {"point": "two"}] diff --git a/test/interface_stats/test_interface_stats_e2e.py b/test/interface_stats/test_interface_stats_e2e.py index 6f92c8a1eab8f499e26f156189b8207cab21b925..5f7c525f9ddb34fdff6583a3470a7b00850512d5 100644 --- a/test/interface_stats/test_interface_stats_e2e.py +++ b/test/interface_stats/test_interface_stats_e2e.py @@ -1,3 +1,4 @@ +import concurrent.futures import contextlib import json import logging @@ -7,15 +8,14 @@ import socket import subprocess import tempfile import time -from unittest.mock import patch -from brian_polling_manager.influx import influx_client -from brian_polling_manager.interface_stats.vendors import common -from click.testing import CliRunner from typing import Any, Dict, Optional, Set -from brian_polling_manager.interface_stats import cli -import concurrent.futures +from unittest.mock import patch + import pytest import yaml +from brian_polling_manager.influx import influx_client +from brian_polling_manager.interface_stats import cli, common +from click.testing import CliRunner CONTAINER_UP_TIMEOUT_S = 40 CONTAINER_HEALTH_TIMEOUT_S = 60 @@ -73,13 +73,15 @@ def _use_docker_compose(): compose_result = subprocess.call( ["docker-compose"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL ) - return compose_result == 0 + if compose_result == 0: + return True + raise RuntimeError("USE_COMPOSE is set but docker compose found") @pytest.fixture -def app_config_filename(app_config_params: Dict[str, Any]): +def app_config_filename(config: Dict[str, Any]): with tempfile.NamedTemporaryFile() as f: - f.write(json.dumps(app_config_params).encode("utf-8")) + f.write(json.dumps(config).encode("utf-8")) f.flush() yield f.name @@ -213,7 +215,7 @@ def test_config_file_validation(app_config_filename: str): @pytest.fixture -def app_config_params(influx_params): +def config(influx_params): with tempfile.NamedTemporaryFile() as f: yield { "juniper": { @@ -232,6 +234,7 @@ def app_config_params(influx_params): "ssh_config": f.name, "hostkey_verify": False, }, + "inventory": ["http://blah"], "brian-counters": { "influx": { **influx_params, @@ -325,10 +328,11 @@ def verify_influx_content( ) def test_e2e_juniper( mocked_get_netconf, - app_config_params: Dict[str, Any], + config: Dict[str, Any], app_config_filename: str, influx_container: None, all_juniper_routers, + # mock_inventory, ): """ load all router interfaces into a tmp influx container, check that @@ -347,12 +351,12 @@ def test_e2e_juniper( assert result.exit_code == 0, str(result) verify_influx_content( - influx_config=app_config_params["brian-counters"]["influx"], + influx_config=config["brian-counters"]["influx"], schema=common.BRIAN_POINT_FIELDS_SCHEMA, ) verify_influx_content( - influx_config=app_config_params["error-counters"]["influx"], + influx_config=config["error-counters"]["influx"], schema=common.ERROR_POINT_FIELDS_SCHEMA, exclude={"output_discards"}, ) @@ -363,10 +367,11 @@ def test_e2e_juniper( ) def test_e2e_nokia( mocked_get_netconf, - app_config_params: Dict[str, Any], + config: Dict[str, Any], app_config_filename: str, influx_container: None, all_nokia_routers, + # mock_inventory, ): """ load all router interfaces into a tmp influx container, check that @@ -385,12 +390,12 @@ def test_e2e_nokia( assert result.exit_code == 0, str(result) verify_influx_content( - influx_config=app_config_params["brian-counters"]["influx"], + influx_config=config["brian-counters"]["influx"], schema=common.BRIAN_POINT_FIELDS_SCHEMA, ) verify_influx_content( - influx_config=app_config_params["error-counters"]["influx"], + influx_config=config["error-counters"]["influx"], schema=common.ERROR_POINT_FIELDS_SCHEMA, only={ "output_total_errors", diff --git a/test/interface_stats/test_juniper.py b/test/interface_stats/test_juniper.py index 1b4745fd406c988ce1dbabf6cc491b540033c1e3..1b96b7f681cc185241cbacc8cc03786182430165 100644 --- a/test/interface_stats/test_juniper.py +++ b/test/interface_stats/test_juniper.py @@ -1,9 +1,9 @@ from datetime import datetime from unittest.mock import call, patch +from brian_polling_manager.interface_stats import common, juniper import pytest from brian_polling_manager import influx -from brian_polling_manager.interface_stats.vendors import common, juniper from lxml import etree from ncclient.operations.rpc import RPCReply @@ -113,7 +113,7 @@ def test_interface_counters(juniper_router_doc_containing_every_field): assert result == [ { "name": "ae12", - "brian": { + common.PointGroup.BRIAN: { "ingressOctets": 1, "ingressPackets": 2, "egressOctets": 3, @@ -126,7 +126,7 @@ def test_interface_counters(juniper_router_doc_containing_every_field): "ingressDiscards": 12, "egressErrors": 21, }, - "errors": { + common.PointGroup.ERROR: { "input_discards": 12, "input_fifo_errors": 13, "input_drops": 14, @@ -147,7 +147,7 @@ def test_interface_counters(juniper_router_doc_containing_every_field): }, { "name": "ae12.1", - "brian": { + common.PointGroup.BRIAN: { "ingressOctets": 51, "ingressPackets": 52, "egressOctets": 53, @@ -175,41 +175,34 @@ def test_juniper_router_docs_do_not_generate_errors( def test_validate_interface_counters_and_influx_points_for_all_juniper_routers( - juniper_router_fqdn, get_netconf, juniper_inventory, schemavalidate + juniper_router_fqdn, mocked_get_netconf, juniper_inventory, schemavalidate ): - doc = get_netconf(juniper_router_fqdn) - - interfaces = list( - juniper.interface_counters( - doc, interfaces=juniper_inventory[juniper_router_fqdn] - ) - ) - assert interfaces - for ifc in interfaces: - schemavalidate(ifc, common.INTERFACE_COUNTER_SCHEMA) - schemavalidate(ifc["brian"], common.BRIAN_POINT_FIELDS_SCHEMA) + config = { + "juniper": {}, + "brian-counters": {"influx": {"measurement": "blah"}}, + "error-counters": {"influx": {"measurement": "blah"}}, + } + juniper_processor = juniper.JuniperRouterProcessor(juniper_router_fqdn, config) bpoints = list( - common.brian_points( - juniper_router_fqdn, - interfaces, + juniper_processor.points( + point_group=common.PointGroup.BRIAN, timestamp=datetime.now(), - measurement_name="blah", + interfaces=juniper_inventory[juniper_router_fqdn], ) ) assert bpoints for point in bpoints: schemavalidate(point, influx.INFLUX_POINT) schemavalidate(point["fields"], common.BRIAN_POINT_FIELDS_SCHEMA) - for value in point['fields'].values(): + for value in point["fields"].values(): assert isinstance(value, float) epoints = list( - common.error_points( - juniper_router_fqdn, - interfaces, + juniper_processor.points( + point_group=common.PointGroup.ERROR, timestamp=datetime.now(), - measurement_name="blah", + interfaces=juniper_inventory[juniper_router_fqdn], ) ) assert epoints diff --git a/test/interface_stats/test_nokia.py b/test/interface_stats/test_nokia.py index aae4622c37d5c67803ee5678b8c498206c25c5f8..e2d7bd3b0ca797c63941dddc73f409772fc54eab 100644 --- a/test/interface_stats/test_nokia.py +++ b/test/interface_stats/test_nokia.py @@ -1,8 +1,10 @@ from datetime import datetime from unittest.mock import call, patch -from brian_polling_manager import influx -from brian_polling_manager.interface_stats.vendors import common, nokia + import pytest +from brian_polling_manager import influx +from brian_polling_manager.interface_stats import common, nokia +from brian_polling_manager.interface_stats.common import PointGroup from lxml import etree @@ -20,6 +22,17 @@ NOKIA_STATE_XML = """\ <rpc-reply> <data> <state> + <filter> + <ip-filter> + <filter-name>NREN_IAS_DFN_OUT</filter-name> + <entry> + <entry-id>100</entry-id> + <statistics> + <egress-hit-byte>51</egress-hit-byte> + </statistics> + </entry> + </ip-filter> + </filter> <port> <port-id>1/1/c1</port-id> <oper-state>up</oper-state> @@ -125,6 +138,22 @@ NOKIA_STATE_XML = """\ </egress> </sap> </epipe> + <vprn> + <service-name>IAS</service-name> + <interface> + <interface-name>lag-11.333</interface-name> + <ingress> + <statistics> + <policy-accounting> + <destination-class> + <index>1</index> + <forwarded-bytes>41</forwarded-bytes> + </destination-class> + </policy-accounting> + </statistics> + </ingress> + </interface> + </vprn> </service> </state> </data> @@ -136,11 +165,10 @@ def nokia_doc_containing_every_field(): def test_nokia_counters(): - result = list(nokia.interface_counters(nokia_doc_containing_every_field())) - assert result == [ + expected = [ { "name": "1/1/c1", - "brian": { + PointGroup.BRIAN: { "ingressOctets": 1, "ingressPackets": 2, "egressOctets": 3, @@ -149,7 +177,7 @@ def test_nokia_counters(): "ingressDiscards": 6, "egressErrors": 7, }, - "errors": { + PointGroup.ERROR: { "input_total_errors": 5, "input_discards": 6, "output_total_errors": 7, @@ -161,7 +189,7 @@ def test_nokia_counters(): }, { "name": "lag-1", - "brian": { + PointGroup.BRIAN: { "ingressOctets": 1, "ingressPackets": 2, "egressOctets": 3, @@ -170,7 +198,7 @@ def test_nokia_counters(): "ingressDiscards": 6, "egressErrors": 7, }, - "errors": { + PointGroup.ERROR: { "input_total_errors": 5, "input_discards": 6, "output_total_errors": 7, @@ -179,7 +207,7 @@ def test_nokia_counters(): }, { "name": "lag-1.0", - "brian": { + PointGroup.BRIAN: { "ingressOctets": 11, "ingressPackets": 12, "egressOctets": 13, @@ -189,69 +217,76 @@ def test_nokia_counters(): "egressOctetsv6": 18, "egressPacketsv6": 19, }, - "errors": { + PointGroup.ERROR: { "output_discards": 15, }, }, { "name": "lag-14:505.cp-400", - "brian": { + PointGroup.BRIAN: { "ingressOctets": 24, "ingressPackets": 23, "egressOctets": 26 + 28, "egressPackets": 25 + 27, }, - "errors": { + PointGroup.ERROR: { "input_discards": 21, "output_discards": 29 + 30, }, }, ] + result = list( + nokia.interface_counters( + nokia_doc_containing_every_field(), interfaces=[c["name"] for c in expected] + ) + ) + assert result == expected def test_nokia_router_docs_do_not_generate_errors( - nokia_router_fqdn, caplog, get_netconf + nokia_router_fqdn, nokia_inventory, caplog, get_netconf ): doc = get_netconf(nokia_router_fqdn) - counters = list(nokia.interface_counters(doc)) + counters = list( + nokia.interface_counters(doc, interfaces=nokia_inventory[nokia_router_fqdn]) + ) assert counters assert not [r for r in caplog.records if r.levelname in ("ERROR", "WARNING")] +@pytest.mark.parametrize( + "point_group, fields_schema", + [ + (PointGroup.BRIAN, common.BRIAN_POINT_FIELDS_SCHEMA), + (PointGroup.ERROR, common.ERROR_POINT_FIELDS_SCHEMA), + ], +) def test_validate_interface_counters_and_influx_points_for_all_nokia_routers( - nokia_router_fqdn, get_netconf, schemavalidate + point_group: PointGroup, + fields_schema: dict, + nokia_router_fqdn, + mocked_get_netconf, + nokia_inventory, + schemavalidate, ): - doc = get_netconf(nokia_router_fqdn) - interfaces = list(nokia.interface_counters(doc)) - assert interfaces - for ifc in interfaces: - schemavalidate(ifc, common.INTERFACE_COUNTER_SCHEMA) - - bpoints = list( - common.brian_points( - nokia_router_fqdn, - interfaces, - timestamp=datetime.now(), - measurement_name="blah", - ) - ) - assert bpoints - for point in bpoints: - schemavalidate(point, influx.INFLUX_POINT) - schemavalidate(point["fields"], common.BRIAN_POINT_FIELDS_SCHEMA) + config = { + "nokia": {}, + "brian-counters": {"influx": {"measurement": "blah"}}, + "error-counters": {"influx": {"measurement": "blah"}}, + } + processor = nokia.NokiaRouterProcessor(nokia_router_fqdn, config) - epoints = list( - common.error_points( - nokia_router_fqdn, - interfaces, + points = list( + processor.points( + point_group=point_group, timestamp=datetime.now(), - measurement_name="blah", + interfaces=nokia_inventory[nokia_router_fqdn], ) ) - assert epoints - for point in epoints: + assert points + for point in points: schemavalidate(point, influx.INFLUX_POINT) - schemavalidate(point["fields"], common.ERROR_POINT_FIELDS_SCHEMA) + schemavalidate(point["fields"], fields_schema) @pytest.mark.parametrize( @@ -275,6 +310,22 @@ def test_processes_specific_interfaces(router, interfaces, get_netconf, caplog): assert not [r for r in caplog.records if r.levelname in ("ERROR", "WARNING")] +def test_processes_gws_indirect_egress_counters(): + interfaces = {"lag-11.333": {"ip_filter": "NREN_IAS_DFN_OUT"}} + processor = nokia.NokiaRouterProcessor("some.router", config={}) + processor._netconf_doc = nokia_doc_containing_every_field() + counters = list(processor.iter_counters(interfaces, PointGroup.GWS_INDIRECT)) + assert counters == [ + ( + "lag-11.333", + { + "ingressOctets": 41, + "egressOctets": 51, + }, + ), + ] + + class TestGetNokiaNetconf: RAW_RESPONSE_FILE = "raw-response-nokia-sample.xml" @@ -308,6 +359,8 @@ class TestGetNokiaNetconf: assert filter_tags == [ "filter", "{urn:nokia.com:sros:ns:yang:sr:state}state", + "{urn:nokia.com:sros:ns:yang:sr:state}filter", + "{urn:nokia.com:sros:ns:yang:sr:state}ip-filter", "{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", diff --git a/tox.ini b/tox.ini index 9646bc5e661f32194ba6b0301cf25ebcd2300809..257c38dd46f0cf9115120512ea3cbf323677a652 100644 --- a/tox.ini +++ b/tox.ini @@ -18,9 +18,7 @@ commands = coverage run --source brian_polling_manager -m pytest {posargs} coverage xml coverage html - coverage report - # coverage report --fail-under 80 TMP!! refactoring tests! - coverage report --fail-under 75 + coverage report --fail-under 85 flake8 brian_polling_manager/ test/ setup.py sphinx-build -M html docs/source docs/build