diff --git a/napalm/eos/eos.py b/napalm/eos/eos.py index 93128ca2c..12d98bff2 100644 --- a/napalm/eos/eos.py +++ b/napalm/eos/eos.py @@ -966,7 +966,7 @@ def get_arp_table(self, vrf=""): interface = str(neighbor.get("interface")) mac_raw = neighbor.get("hwAddress") ip = str(neighbor.get("address")) - age = float(neighbor.get("age")) + age = float(neighbor.get("age", -1.0)) arp_table.append( { "interface": interface, @@ -1990,3 +1990,16 @@ def ping( ) ping_dict["success"].update({"results": results_array}) return ping_dict + + def get_vlans(self): + command = ["show vlan"] + output = self.device.run_commands(command, encoding="json")[0]["vlans"] + + vlans = {} + for vlan, vlan_config in output.items(): + vlans[vlan] = { + "name": vlan_config["name"], + "interfaces": list(vlan_config["interfaces"].keys()), + } + + return vlans diff --git a/napalm/eos/pyeapi_syntax_wrapper.py b/napalm/eos/pyeapi_syntax_wrapper.py index 246b185c9..c240df3d4 100644 --- a/napalm/eos/pyeapi_syntax_wrapper.py +++ b/napalm/eos/pyeapi_syntax_wrapper.py @@ -25,7 +25,7 @@ def update_cli_version(self, version): """ self.cli_version = version - def run_commands(self, commands, **kwargs): + def run_commands(self, commands, *args, **kwargs): """ Run commands wrapper :param commands: list of commands @@ -39,4 +39,4 @@ def run_commands(self, commands, **kwargs): else: commands = [cli_convert(cmd, self.cli_version) for cmd in commands] - return super(Node, self).run_commands(commands, **kwargs) + return super(Node, self).run_commands(commands, *args, **kwargs) diff --git a/napalm/eos/utils/cli_syntax.py b/napalm/eos/utils/cli_syntax.py index 1dcda1bf2..d4445fb01 100644 --- a/napalm/eos/utils/cli_syntax.py +++ b/napalm/eos/utils/cli_syntax.py @@ -92,6 +92,7 @@ "show dot1x all brief": "show dot1x all summary", "show system environment all": "show environment all", "show system environment cooling": "show environment cooling", + "show system environment temperature": "show environment temperature", "show interfaces hardware": "show interfaces capabilities", "show interfaces flow-control": "show interfaces flowcontrol", "show pvlan mapping interfaces": "show interfaces private-vlan mapping", @@ -244,6 +245,7 @@ "show dot1x all summary": "show dot1x all brief", "show environment all": "show system environment all", "show environment cooling": "show system environment cooling", + "show environment temperature": "show system environment temperature", "show interfaces capabilities": "show interfaces hardware", "show interfaces flowcontrol": "show interfaces flow-control", "show interfaces private-vlan mapping": "show pvlan mapping interfaces", diff --git a/napalm/ios/ios.py b/napalm/ios/ios.py index ef690c0e0..8d18ab53d 100644 --- a/napalm/ios/ios.py +++ b/napalm/ios/ios.py @@ -88,6 +88,7 @@ RE_BGP_REMOTE_AS = re.compile(r"remote AS (" + ASN_REGEX + r")") RE_BGP_AS_PATH = re.compile(r"^[ ]{2}([\d\(]([\d\) ]+)|Local)") +RE_RP_ROUTE = re.compile(r"Routing entry for (" + IP_ADDR_REGEX + r"\/\d+)") RE_RP_FROM = re.compile(r"Known via \"([a-z]+)[ \"]") RE_RP_VIA = re.compile(r"via (\S+)") RE_RP_METRIC = re.compile(r"[ ]+Route metric is (\d+)") @@ -2322,7 +2323,7 @@ def get_arp_table(self, vrf=""): try: if age == "-": - age = 0 + age = -1 age = float(age) except ValueError: raise ValueError("Unable to convert age value to float: {}".format(age)) @@ -2696,18 +2697,22 @@ def process_mac_fields(vlan, mac, mac_type, interface): def get_probes_config(self): probes = {} + probes_regex = ( r"ip\s+sla\s+(?P\d+)\n" - r"\s+(?P\S+)\s+(?P.*\n).*" - r"\s+tag\s+(?P\S+)\n.*" - r"\s+history\s+buckets-kept\s+(?P\d+)\n.*" - r"\s+frequency\s+(?P\d+)$" + r"\s+(?P\S+)\s+(?P.*)\n" + r"\s+tag\s+(?P[\S ]+)\n" + r"(\s+.*\n)*" + r"((\s+frequency\s+(?P\d+)\n(\s+.*\n)*\s+history" + r"\s+buckets-kept\s+(?P\d+))|(\s+history\s+buckets-kept" + r"\s+(?P\d+)\n.*\s+frequency\s+(?P\d+)))" ) + probe_args = { "icmp-echo": r"^(?P\S+)\s+source-(?:ip|interface)\s+(?P\S+)$" } probe_type_map = {"icmp-echo": "icmp-ping"} - command = "show run | include ip sla [0-9]" + command = "show run | section ip sla [0-9]" output = self._send_command(command) for match in re.finditer(probes_regex, output, re.M): probe = match.groupdict() @@ -2723,8 +2728,8 @@ def get_probes_config(self): "probe_type": probe_type_map[probe["probe_type"]], "target": probe_data["target"], "source": probe_data["source"], - "probe_count": int(probe["probe_count"]), - "test_interval": int(probe["interval"]), + "probe_count": int(probe["probe_count0"] or probe["probe_count1"]), + "test_interval": int(probe["interval0"] or probe["interval1"]), } } @@ -2773,7 +2778,7 @@ def _get_bgp_route_attr(self, destination, vrf, next_hop, ip_version=4): search_re_dict = { "aspath": { - "re": r"[^|\\n][ ]{2}([\d\(\)]([\d\(\) ])*)", + "re": r"[^|\\n][ ]{2}([\d\(\)]([\d\(\) ])*|Local)", "group": 1, "default": "", }, @@ -2947,8 +2952,11 @@ def get_route_to(self, destination="", protocol="", longer=False): vrfs.append("default") # global VRF ipnet_dest = IPNetwork(destination) prefix = str(ipnet_dest.network) - netmask = str(ipnet_dest.netmask) - routes = {destination: []} + netmask = "" + routes = {} + if "/" in destination: + netmask = str(ipnet_dest.netmask) + routes = {destination: []} commands = [] for _vrf in vrfs: if _vrf == "default": @@ -2969,6 +2977,14 @@ def get_route_to(self, destination="", protocol="", longer=False): for (outitem, _vrf) in zip(output, vrfs): # for all VRFs route_proto_regex = RE_RP_FROM.search(outitem) if route_proto_regex: + route_match = destination + if netmask == "": + # Get the matching route for a non-exact lookup + route_match_regex = RE_RP_ROUTE.search(outitem) + if route_match_regex: + route_match = route_match_regex.group(1) + if route_match not in routes: + routes[route_match] = [] # routing protocol name (bgp, ospf, ...) route_proto = route_proto_regex.group(1) rdb = outitem.split("Routing Descriptor Blocks:") @@ -3037,7 +3053,7 @@ def get_route_to(self, destination="", protocol="", longer=False): nh_line_found = ( False # for next RT entry processing ... ) - routes[destination].append(route_entry) + routes[route_match].append(route_entry) return routes def get_snmp_information(self): @@ -3405,7 +3421,14 @@ def get_network_instances(self, name=""): if "No interfaces" in first_part: interfaces = {} else: - interfaces = {itf: {} for itf in if_regex.group(1).split()} + interfaces = { + canonical_interface_name(itf, {"Vl": "Vlan"}): {} + for itf in if_regex.group(1).split() + } + + # remove interfaces in the VRF from the default VRF + for item in interfaces: + del instances["default"]["interfaces"]["interface"][item] instances[vrf_name] = { "name": vrf_name, diff --git a/napalm/iosxr/iosxr.py b/napalm/iosxr/iosxr.py index 5f4cf62e5..ea94e1e5a 100644 --- a/napalm/iosxr/iosxr.py +++ b/napalm/iosxr/iosxr.py @@ -41,6 +41,7 @@ from napalm.base.exceptions import CommandTimeoutException logger = logging.getLogger(__name__) +IP_RIBRoute = "IP_RIBRoute" class IOSXRDriver(NetworkDriver): @@ -1402,7 +1403,7 @@ def get_arp_table(self, vrf=""): str, napalm.base.helpers.find_txt(arp_entry, ".//Address") ) age = napalm.base.helpers.convert( - float, napalm.base.helpers.find_txt(arp_entry, ".//Age"), 0.0 + float, napalm.base.helpers.find_txt(arp_entry, ".//Age"), -1.0 ) mac_raw = napalm.base.helpers.find_txt(arp_entry, ".//HardwareAddress") @@ -1641,6 +1642,7 @@ def get_mac_address_table(self): def get_route_to(self, destination="", protocol="", longer=False): routes = {} + global IP_RIBRoute if not isinstance(destination, str): raise TypeError("Please specify a valid destination!") @@ -1672,32 +1674,45 @@ def get_route_to(self, destination="", protocol="", longer=False): "" "defaultIPv6" "" - "Unicast" + "Unicast<{ipribroute}>" "" "default" "
" - "{network}
{prefix}
" + "{network}{prefix}" "
" "
" - ).format(network=network, prefix=prefix_tag) + ).format(network=network, prefix=prefix_tag, ipribroute=IP_RIBRoute) else: route_info_rpc_command = ( "" "default" "IPv4" "" - "Unicast" + "Unicast<{ipribroute}>" "" "default" "
" - "{network}
{prefix}
" + "{network}{prefix}" "
" "
" - ).format(network=network, prefix=prefix_tag) + ).format(network=network, prefix=prefix_tag, ipribroute=IP_RIBRoute) - routes_tree = ETREE.fromstring( - self.device.make_rpc_call(route_info_rpc_command) - ) + try: + routes_tree = ETREE.fromstring( + self.device.make_rpc_call(route_info_rpc_command) + ) + except Exception: + pass + # Some versions of IOS-XR use IP_RIBRouteTableName instead of IP_RIBRoute. + # If IP_RIBRoute throws an exception, try again with IP_RIBRouteTableName + # and have subsequent get_route_to calls use that. + IP_RIBRoute = "IP_RIBRouteTableName" + route_info_rpc_command = route_info_rpc_command.replace( + "IP_RIBRoute>", "{ipribroute}>".format(ipribroute=IP_RIBRoute) + ) + routes_tree = ETREE.fromstring( + self.device.make_rpc_call(route_info_rpc_command) + ) for route in routes_tree.xpath(".//Route"): route_protocol = napalm.base.helpers.convert( diff --git a/napalm/nxos_ssh/nxos_ssh.py b/napalm/nxos_ssh/nxos_ssh.py index f7ffd8d7f..d29f41505 100644 --- a/napalm/nxos_ssh/nxos_ssh.py +++ b/napalm/nxos_ssh/nxos_ssh.py @@ -1641,3 +1641,100 @@ def get_optics(self): optics_detail[port] = port_detail return optics_detail + + def get_interfaces_counters(self): + """ + Return interface counters and errors. + + 'tx_errors': int, + 'rx_errors': int, + 'tx_discards': int, + 'rx_discards': int, + 'tx_octets': int, + 'rx_octets': int, + 'tx_unicast_packets': int, + 'rx_unicast_packets': int, + 'tx_multicast_packets': int, + 'rx_multicast_packets': int, + 'tx_broadcast_packets': int, + 'rx_broadcast_packets': int, + """ + if_mapping = { + "eth": { + "regexp": re.compile("^(Ether|port-channel).*"), + "mapping": { + "tx_errors": "eth_outerr", + "rx_errors": "eth_inerr", + "tx_discards": "eth_outdiscard", + "rx_discards": "eth_indiscard", + "tx_octets": "eth_outbytes", + "rx_octets": "eth_inbytes", + "tx_unicast_packets": "eth_outucast", + "rx_unicast_packets": "eth_inucast", + "tx_multicast_packets": "eth_outmcast", + "rx_multicast_packets": "eth_inmcast", + "tx_broadcast_packets": "eth_outbcast", + "rx_broadcast_packets": "eth_inbcast", + }, + }, + "mgmt": { + "regexp": re.compile("mgm.*"), + "mapping": { + "tx_errors": None, + "rx_errors": None, + "tx_discards": None, + "rx_discards": None, + "tx_octets": "mgmt_out_bytes", + "rx_octets": "mgmt_in_bytes", + "tx_unicast_packets": None, + "rx_unicast_packets": None, + "tx_multicast_packets": "mgmt_out_mcast", + "rx_multicast_packets": "mgmt_in_mcast", + "tx_broadcast_packets": None, + "rx_broadcast_packets": None, + }, + }, + } + command = "show interface counters detailed | json" + # To retrieve discards + command_interface = "show interface | json" + counters_table_raw = self._get_command_table( + command, "TABLE_interface", "ROW_interface" + ) + counters_interface_table_raw = self._get_command_table( + command_interface, "TABLE_interface", "ROW_interface" + ) + all_stats_d = {} + # Start with show interface as all interfaces + # Are surely listed + for row in counters_interface_table_raw: + if_counter = {} + # loop through regexp to find mapping + for if_v in if_mapping: + my_re = if_mapping[if_v]["regexp"] + re_match = my_re.match(row["interface"]) + if re_match: + interface = re_match.group() + map_d = if_mapping[if_v]["mapping"] + for k, v in map_d.items(): + if_counter[k] = int(row[v]) if v in row else 0 + all_stats_d[interface] = if_counter + break + print(all_stats_d) + + for row in counters_table_raw: + if_counter = {} + # loop through regexp to find mapping + for if_v in if_mapping: + my_re = if_mapping[if_v]["regexp"] + re_match = my_re.match(row["interface"]) + if re_match: + interface = re_match.group() + map_d = if_mapping[if_v]["mapping"] + for k, v in map_d.items(): + if v in row: + if_counter[k] = int(row[v]) + all_stats_d[interface].update(if_counter) + break + + return all_stats_d diff --git a/requirements-dev.txt b/requirements-dev.txt index 99dc168ad..2aa99d134 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,11 +1,11 @@ -black==19.10b0 -coveralls==2.1.1 +black==20.8b1 +coveralls==2.1.2 ddt==1.4.1 flake8-import-order==0.18.1 pytest==5.4.3 -pytest-cov==2.10.0 +pytest-cov==2.10.1 pytest-json==0.4.0 pytest-pythonpath==0.7.3 pylama==7.7.1 mock==4.0.2 -tox==3.18.0 \ No newline at end of file +tox==3.20.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 61e27931e..5ecf6f855 100644 --- a/setup.py +++ b/setup.py @@ -12,16 +12,18 @@ setup( name="napalm", - version="3.1.0", + version="3.2.0", packages=find_packages(exclude=("test*",)), test_suite="test_base", author="David Barroso, Kirk Byers, Mircea Ulinic", author_email="dbarrosop@dravetech.com, ping@mirceaulinic.net, ktbyers@twb-tech.com", description="Network Automation and Programmability Abstraction Layer with Multivendor support", + license="Apache 2.0", long_description=long_description, long_description_content_type="text/markdown", classifiers=[ "Topic :: Utilities", + "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", diff --git a/test/eos/mocked_data/test_get_arp_table/static_arp/expected_result.json b/test/eos/mocked_data/test_get_arp_table/static_arp/expected_result.json new file mode 100644 index 000000000..755a3e73b --- /dev/null +++ b/test/eos/mocked_data/test_get_arp_table/static_arp/expected_result.json @@ -0,0 +1 @@ +[{"interface": "Ethernet45", "ip": "172.17.17.1", "mac": "DC:38:E1:11:97:CF", "age": -1.0}, {"interface": "Ethernet36", "ip": "172.17.17.1", "mac": "90:E2:BA:5C:25:FD", "age": 0.0}] diff --git a/test/eos/mocked_data/test_get_arp_table/static_arp/show_arp_vrf_all.json b/test/eos/mocked_data/test_get_arp_table/static_arp/show_arp_vrf_all.json new file mode 100644 index 000000000..da2dd3337 --- /dev/null +++ b/test/eos/mocked_data/test_get_arp_table/static_arp/show_arp_vrf_all.json @@ -0,0 +1,23 @@ +{ + "vrfs": { + "default": { + "dynamicEntries": 699, + "ipV4Neighbors": [ + { + "hwAddress": "dc38.e111.97cf", + "address": "172.17.17.1", + "interface": "Ethernet45" + }, + { + "hwAddress": "90e2.ba5c.25fd", + "address": "172.17.17.1", + "interface": "Ethernet36", + "age": 0 + } + ], + "notLearnedEntries": 19, + "totalEntries": 699, + "staticEntries": 0 + } + } +} diff --git a/test/eos/mocked_data/test_get_vlans/normal/expected_result.json b/test/eos/mocked_data/test_get_vlans/normal/expected_result.json new file mode 100644 index 000000000..03e6aa0bd --- /dev/null +++ b/test/eos/mocked_data/test_get_vlans/normal/expected_result.json @@ -0,0 +1,216 @@ +{ + "1": { + "name": "default", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet3", + "Ethernet4", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "10": { + "name": "VLAN0010", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "11": { + "name": "VLAN0011", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "12": { + "name": "VLAN0012", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "13": { + "name": "VLAN0013", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "14": { + "name": "VLAN0014", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "15": { + "name": "VLAN0015", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet49/1", + "Ethernet50/1" + ] + }, + "100": { + "name": "VLAN0100", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "101": { + "name": "VLAN0101", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "102": { + "name": "VLAN0102", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "103": { + "name": "VLAN0103", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "104": { + "name": "VLAN0104", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "105": { + "name": "VLAN0105", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet1/1/1", + "Ethernet2/1/1", + "Ethernet3/1/1" + ] + }, + "200": { + "name": "VLAN0200", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "201": { + "name": "VLAN0201", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "202": { + "name": "VLAN0202", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "203": { + "name": "VLAN0203", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "204": { + "name": "VLAN0204", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "205": { + "name": "VLAN0205", + "interfaces": [ + "Port-Channel1", + "Ethernet1", + "Ethernet2", + "Ethernet4/1/1", + "Ethernet4/1/2", + "Ethernet4/1/3", + "Ethernet4/1/4" + ] + }, + "1000": { + "name": "VLAN1000", + "interfaces": [] + } +} diff --git a/test/eos/mocked_data/test_get_vlans/normal/show_vlan.json b/test/eos/mocked_data/test_get_vlans/normal/show_vlan.json new file mode 100644 index 000000000..f1f4107e3 --- /dev/null +++ b/test/eos/mocked_data/test_get_vlans/normal/show_vlan.json @@ -0,0 +1,489 @@ +{ + "sourceDetail": "", + "vlans": { + "1": { + "status": "active", + "name": "default", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet3": { + "privatePromoted": false + }, + "Ethernet4": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "10": { + "status": "active", + "name": "VLAN0010", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "11": { + "status": "active", + "name": "VLAN0011", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "12": { + "status": "active", + "name": "VLAN0012", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "13": { + "status": "active", + "name": "VLAN0013", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "14": { + "status": "active", + "name": "VLAN0014", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "15": { + "status": "active", + "name": "VLAN0015", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet49/1": { + "privatePromoted": false + }, + "Ethernet50/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "100": { + "status": "active", + "name": "VLAN0100", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "101": { + "status": "active", + "name": "VLAN0101", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "102": { + "status": "active", + "name": "VLAN0102", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "103": { + "status": "active", + "name": "VLAN0103", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "104": { + "status": "active", + "name": "VLAN0104", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "105": { + "status": "active", + "name": "VLAN0105", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet1/1/1": { + "privatePromoted": false + }, + "Ethernet2/1/1": { + "privatePromoted": false + }, + "Ethernet3/1/1": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "200": { + "status": "active", + "name": "VLAN0200", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "201": { + "status": "active", + "name": "VLAN0201", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "202": { + "status": "active", + "name": "VLAN0202", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "203": { + "status": "active", + "name": "VLAN0203", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "204": { + "status": "active", + "name": "VLAN0204", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "205": { + "status": "active", + "name": "VLAN0205", + "interfaces": { + "Port-Channel1": { + "privatePromoted": false + }, + "Ethernet1": { + "privatePromoted": false + }, + "Ethernet2": { + "privatePromoted": false + }, + "Ethernet4/1/1": { + "privatePromoted": false + }, + "Ethernet4/1/2": { + "privatePromoted": false + }, + "Ethernet4/1/3": { + "privatePromoted": false + }, + "Ethernet4/1/4": { + "privatePromoted": false + } + }, + "dynamic": false + }, + "1000": { + "status": "active", + "name": "VLAN1000", + "interfaces": {}, + "dynamic": false + } + } +} diff --git a/test/ios/mocked_data/test_get_arp_table/normal/expected_result.json b/test/ios/mocked_data/test_get_arp_table/normal/expected_result.json index 7d7f096ee..ff1248b62 100644 --- a/test/ios/mocked_data/test_get_arp_table/normal/expected_result.json +++ b/test/ios/mocked_data/test_get_arp_table/normal/expected_result.json @@ -12,7 +12,7 @@ "interface": "Vlan20", "ip": "172.29.50.3", "mac": "00:24:F7:DD:77:41", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan20", "ip": "172.29.50.10", @@ -27,7 +27,7 @@ "interface": "Vlan41", "ip": "172.29.52.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan41", "ip": "172.29.52.40", @@ -37,5 +37,5 @@ "interface": "Vlan41", "ip": "192.168.81.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }] diff --git a/test/ios/mocked_data/test_get_arp_table/static_arp_entry/expected_result.json b/test/ios/mocked_data/test_get_arp_table/static_arp_entry/expected_result.json index 191713ebd..3faeb1976 100644 --- a/test/ios/mocked_data/test_get_arp_table/static_arp_entry/expected_result.json +++ b/test/ios/mocked_data/test_get_arp_table/static_arp_entry/expected_result.json @@ -12,7 +12,7 @@ "interface": "Vlan20", "ip": "172.29.50.3", "mac": "00:24:F7:DD:77:41", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan20", "ip": "172.29.50.10", @@ -27,7 +27,7 @@ "interface": "Vlan41", "ip": "172.29.52.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan41", "ip": "172.29.52.40", @@ -37,5 +37,5 @@ "interface": "Vlan41", "ip": "192.168.81.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }] diff --git a/test/ios/mocked_data/test_get_arp_table_with_vrf/normal/expected_result.json b/test/ios/mocked_data/test_get_arp_table_with_vrf/normal/expected_result.json index 7d7f096ee..ff1248b62 100644 --- a/test/ios/mocked_data/test_get_arp_table_with_vrf/normal/expected_result.json +++ b/test/ios/mocked_data/test_get_arp_table_with_vrf/normal/expected_result.json @@ -12,7 +12,7 @@ "interface": "Vlan20", "ip": "172.29.50.3", "mac": "00:24:F7:DD:77:41", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan20", "ip": "172.29.50.10", @@ -27,7 +27,7 @@ "interface": "Vlan41", "ip": "172.29.52.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }, { "interface": "Vlan41", "ip": "172.29.52.40", @@ -37,5 +37,5 @@ "interface": "Vlan41", "ip": "192.168.81.34", "mac": "00:24:F7:DD:77:43", - "age": 0.0 + "age": -1.0 }] diff --git a/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/expected_result.json b/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/expected_result.json new file mode 100644 index 000000000..6e995be8d --- /dev/null +++ b/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/expected_result.json @@ -0,0 +1,33 @@ +{ + "default": { + "name": "default", + "type": "DEFAULT_INSTANCE", + "state": { + "route_distinguisher": "" + }, + "interfaces": { + "interface": { + "Ethernet0/0": {}, + "Ethernet0/1": {}, + "Ethernet0/2": {}, + "Ethernet0/3": {}, + "Ethernet1/0": {}, + "Ethernet1/1": {}, + "Ethernet1/2": {}, + "Ethernet1/3": {}, + "Ethernet2/0": {}, + "Ethernet2/1": {}, + "Ethernet2/2": {}, + "Ethernet2/3": {}, + "Ethernet3/0": {}, + "Ethernet3/1": {}, + "Ethernet3/2": {}, + "Ethernet3/3": {}, + "Vlan1": {}, + "Vlan2": {}, + "Vlan3": {}, + "Vlan4": {} + } + } + } +} diff --git a/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/show_ip_interface_brief.txt b/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/show_ip_interface_brief.txt new file mode 100644 index 000000000..fcee66929 --- /dev/null +++ b/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/show_ip_interface_brief.txt @@ -0,0 +1,21 @@ +Interface IP-Address OK? Method Status Protocol +Ethernet0/0 172.29.29.220 YES manual up up +Ethernet0/1 unassigned YES unset up up +Ethernet0/2 unassigned YES unset up up +Ethernet0/3 unassigned YES unset up up +Ethernet1/0 unassigned YES unset up up +Ethernet1/1 unassigned YES unset up up +Ethernet1/2 unassigned YES unset up up +Ethernet1/3 unassigned YES unset up up +Ethernet2/0 unassigned YES unset up up +Ethernet2/1 unassigned YES unset up up +Ethernet2/2 unassigned YES unset up up +Ethernet2/3 unassigned YES unset up up +Ethernet3/0 unassigned YES unset up up +Ethernet3/1 unassigned YES unset up up +Ethernet3/2 unassigned YES unset up up +Ethernet3/3 unassigned YES unset up up +Vlan1 unassigned YES unset administratively down down +Vlan2 2.2.2.2 YES manual up up +Vlan3 3.3.3.3 YES manual up up +Vlan4 4.4.4.4 YES manual up up diff --git a/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/show_vrf_detail.txt b/test/ios/mocked_data/test_get_network_instances/no_vrf_svis/show_vrf_detail.txt new file mode 100644 index 000000000..e69de29bb diff --git a/test/ios/mocked_data/test_get_network_instances/normal/expected_result.json b/test/ios/mocked_data/test_get_network_instances/normal/expected_result.json index ce1c42502..3a0e182dd 100644 --- a/test/ios/mocked_data/test_get_network_instances/normal/expected_result.json +++ b/test/ios/mocked_data/test_get_network_instances/normal/expected_result.json @@ -1,78 +1,66 @@ { - "default":{ - "interfaces":{ - "interface":{ - "GigabitEthernet0/0/0":{ - - }, - "Gi0/0/0.152":{ - - }, - "GigabitEthernet0/0/2":{ - - }, - "Gi0/0/0.1774":{ - - }, - "GigabitEthernet0/0/4":{ - - }, - "Gi0/0/0.1772":{ - - }, - "GigabitEthernet0/0/3":{ - - }, - "Gi0/0/0.154":{ - - }, - "GigabitEthernet0/0/1":{ - - }, - "GigabitEthernet0":{ - - }, - "Gi0/0/0.1776":{ - - }, - "Gi0/0/0.600":{ - - }, - "Loopback2":{ - - } - } - }, - "state":{ - "route_distinguisher":"" + "default": { + "name": "default", + "type": "DEFAULT_INSTANCE", + "state": { + "route_distinguisher": "" }, - "type":"DEFAULT_INSTANCE", - "name":"default" - }, - "Mgmt-intf":{ - "interfaces":{ - "interface":{ - "Gi0":{ - - } + "interfaces": { + "interface": { + "Ethernet0/0": {}, + "Ethernet0/1": {}, + "Ethernet0/2": {}, + "Ethernet0/3": {}, + "Ethernet1/0": {}, + "Ethernet1/1": {}, + "Ethernet1/2": {}, + "Ethernet1/3": {}, + "Ethernet2/0": {}, + "Ethernet2/1": {}, + "Ethernet2/2": {}, + "Ethernet2/3": {}, + "Ethernet3/0": {}, + "Ethernet3/1": {}, + "Ethernet3/2": {}, + "Ethernet3/3": {}, + "Vlan1": {} } - }, - "state":{ - "route_distinguisher":"" - }, - "type":"L3VRF", - "name":"Mgmt-intf" + } }, - "opsnet":{ - "interfaces":{ - "interface":{ - + "CustA": { + "name": "CustA", + "type": "L3VRF", + "state": { + "route_distinguisher": "1:1" + }, + "interfaces": { + "interface": { + "Vlan2": {} } + } + }, + "CustB": { + "name": "CustB", + "type": "L3VRF", + "state": { + "route_distinguisher": "2:2" }, - "state":{ - "route_distinguisher":"10283:1021312690" + "interfaces": { + "interface": { + "Vlan3": {} + } + } + }, + "CustC": { + "name": "CustC", + "type": "L3VRF", + "state": { + "route_distinguisher": "3:3" }, - "type":"L3VRF", - "name":"opsnet" + "interfaces": { + "interface": { + "Vlan4": {} + } + } } -} \ No newline at end of file +} diff --git a/test/ios/mocked_data/test_get_network_instances/normal/show_ip_interface_brief.txt b/test/ios/mocked_data/test_get_network_instances/normal/show_ip_interface_brief.txt index 8ef3917eb..fcee66929 100644 --- a/test/ios/mocked_data/test_get_network_instances/normal/show_ip_interface_brief.txt +++ b/test/ios/mocked_data/test_get_network_instances/normal/show_ip_interface_brief.txt @@ -1,17 +1,21 @@ -Load for five secs: 0%/0%; one minute: 1%; five minutes: 1% -Time source is NTP, 09:30:03.851 DST Wed Nov 8 2017 - Interface IP-Address OK? Method Status Protocol -GigabitEthernet0/0/0 unassigned YES NVRAM up up -Gi0/0/0.152 192.168.241.21 YES NVRAM up up -Gi0/0/0.154 192.168.241.30 YES NVRAM up up -Gi0/0/0.600 192.168.241.141 YES NVRAM up up -Gi0/0/0.1772 120.177.177.1 YES NVRAM up up -Gi0/0/0.1774 101.177.177.1 YES NVRAM up up -Gi0/0/0.1776 100.177.177.1 YES NVRAM up up -GigabitEthernet0/0/1 unassigned YES NVRAM administratively down down -GigabitEthernet0/0/2 unassigned YES NVRAM administratively down down -GigabitEthernet0/0/3 unassigned YES NVRAM administratively down down -GigabitEthernet0/0/4 unassigned YES NVRAM administratively down down -GigabitEthernet0 192.168.243.80 YES NVRAM up up -Loopback2 192.168.242.152 YES NVRAM up up \ No newline at end of file +Ethernet0/0 172.29.29.220 YES manual up up +Ethernet0/1 unassigned YES unset up up +Ethernet0/2 unassigned YES unset up up +Ethernet0/3 unassigned YES unset up up +Ethernet1/0 unassigned YES unset up up +Ethernet1/1 unassigned YES unset up up +Ethernet1/2 unassigned YES unset up up +Ethernet1/3 unassigned YES unset up up +Ethernet2/0 unassigned YES unset up up +Ethernet2/1 unassigned YES unset up up +Ethernet2/2 unassigned YES unset up up +Ethernet2/3 unassigned YES unset up up +Ethernet3/0 unassigned YES unset up up +Ethernet3/1 unassigned YES unset up up +Ethernet3/2 unassigned YES unset up up +Ethernet3/3 unassigned YES unset up up +Vlan1 unassigned YES unset administratively down down +Vlan2 2.2.2.2 YES manual up up +Vlan3 3.3.3.3 YES manual up up +Vlan4 4.4.4.4 YES manual up up diff --git a/test/ios/mocked_data/test_get_network_instances/normal/show_vrf_detail.txt b/test/ios/mocked_data/test_get_network_instances/normal/show_vrf_detail.txt index f29e9a0f9..e7875737b 100644 --- a/test/ios/mocked_data/test_get_network_instances/normal/show_vrf_detail.txt +++ b/test/ios/mocked_data/test_get_network_instances/normal/show_vrf_detail.txt @@ -1,11 +1,8 @@ -Load for five secs: 0%/0%; one minute: 0%; five minutes: 1% -Time source is NTP, 09:28:50.737 DST Wed Nov 8 2017 - -VRF Mgmt-intf (VRF Id = 1); default RD ; default VPNID +VRF CustA (VRF Id = 1); default RD 1:1; default VPNID New CLI format, supports multiple address-families - Flags: 0x1808 + Flags: 0x180C Interfaces: - Gi0 + Vl2 Address family ipv4 unicast (Table ID = 0x1): Flags: 0x0 No Export VPN route-target communities @@ -15,7 +12,14 @@ Address family ipv4 unicast (Table ID = 0x1): No export route-map VRF label distribution protocol: not configured VRF label allocation mode: per-prefix -Address family ipv6 unicast (Table ID = 0x1E000001): +Address family ipv6 unicast not active + +VRF CustB (VRF Id = 2); default RD 2:2; default VPNID + New CLI format, supports multiple address-families + Flags: 0x180C + Interfaces: + Vl3 +Address family ipv4 unicast (Table ID = 0x2): Flags: 0x0 No Export VPN route-target communities No Import VPN route-target communities @@ -24,22 +28,21 @@ Address family ipv6 unicast (Table ID = 0x1E000001): No export route-map VRF label distribution protocol: not configured VRF label allocation mode: per-prefix -Address family ipv4 multicast not active +Address family ipv6 unicast not active -VRF opsnet (VRF Id = 2); default RD 10283:1021312690; default VPNID +VRF CustC (VRF Id = 3); default RD 3:3; default VPNID New CLI format, supports multiple address-families Flags: 0x180C - No interfaces -Address family ipv4 unicast (Table ID = 0x2): + Interfaces: + Vl4 +Address family ipv4 unicast (Table ID = 0x3): Flags: 0x0 - Export VPN route-target communities - RT:10283:50000 - Import VPN route-target communities - RT:10283:50000 + No Export VPN route-target communities + No Import VPN route-target communities No import route-map No global export route-map No export route-map VRF label distribution protocol: not configured VRF label allocation mode: per-prefix Address family ipv6 unicast not active -Address family ipv4 multicast not active \ No newline at end of file + diff --git a/test/ios/mocked_data/test_get_probes_config/normal/expected_result.json b/test/ios/mocked_data/test_get_probes_config/normal/expected_result.json index 76935ad9c..f914b4333 100644 --- a/test/ios/mocked_data/test_get_probes_config/normal/expected_result.json +++ b/test/ios/mocked_data/test_get_probes_config/normal/expected_result.json @@ -16,5 +16,14 @@ "test_interval": 3, "probe_count": 20 } + }, + "3": { + "quad9": { + "source": "GigabitEthernet11", + "probe_type": "icmp-ping", + "target": "9.9.9.9", + "test_interval": 15, + "probe_count": 60 + } } } diff --git a/test/ios/mocked_data/test_get_probes_config/normal/show_run___include_ip_sla__0_9_.txt b/test/ios/mocked_data/test_get_probes_config/normal/show_run___section_ip_sla__0_9_.txt similarity index 64% rename from test/ios/mocked_data/test_get_probes_config/normal/show_run___include_ip_sla__0_9_.txt rename to test/ios/mocked_data/test_get_probes_config/normal/show_run___section_ip_sla__0_9_.txt index f778ecef4..eadb56e07 100644 --- a/test/ios/mocked_data/test_get_probes_config/normal/show_run___include_ip_sla__0_9_.txt +++ b/test/ios/mocked_data/test_get_probes_config/normal/show_run___section_ip_sla__0_9_.txt @@ -11,4 +11,10 @@ ip sla 2 history lives-kept 1 history buckets-kept 20 timeout 2000 - frequency 3 \ No newline at end of file + frequency 3 +ip sla 3 + icmp-echo 9.9.9.9 source-interface GigabitEthernet11 + tag quad9 + frequency 15 + history lives-kept 1 + history buckets-kept 60 diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/expected_result.json b/test/ios/mocked_data/test_get_route_to/non_exact/expected_result.json new file mode 100644 index 000000000..ea0b9b259 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/expected_result.json @@ -0,0 +1,44 @@ +{ + "1.0.4.0/24": [ + { + "protocol": "bgp", + "outgoing_interface": "", + "age": 98, + "current_active": true, + "routing_table": "CustB", + "last_active": true, + "protocol_attributes": { + "as_path": "Local", + "remote_address": "169.254.255.1", + "communities": [], + "local_preference": 100, + "local_as": 1, + "remote_as": 1 + }, + "next_hop": "169.254.255.1", + "selected_next_hop": true, + "inactive_reason": "", + "preference": 0 + }, + { + "protocol": "bgp", + "outgoing_interface": "", + "age": 62, + "current_active": true, + "routing_table": "default", + "last_active": true, + "protocol_attributes": { + "as_path": "3 3 3 3", + "remote_address": "200.200.200.1", + "communities": [], + "local_preference": 100, + "local_as": 1, + "remote_as": 3 + }, + "next_hop": "200.200.200.1", + "selected_next_hop": true, + "inactive_reason": "", + "preference": 0 + } + ] +} diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_1_0_4_0_24.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_1_0_4_0_24.txt new file mode 100644 index 000000000..6a4fe2cc7 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_1_0_4_0_24.txt @@ -0,0 +1,9 @@ +BGP routing table entry for 1.0.4.0/24, version 2 +Paths: (1 available, best #1, table default) + Advertised to update-groups: + 2 + Refresh Epoch 1 + 3 3 3 3 + 200.200.200.1 from 200.200.200.1 (1.1.1.1) + Origin IGP, metric 0, localpref 100, valid, external, best + rx pathid: 0, tx pathid: 0x0 diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_neighbors___include_is_200_200_200_1.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_neighbors___include_is_200_200_200_1.txt new file mode 100644 index 000000000..6ee579e97 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_neighbors___include_is_200_200_200_1.txt @@ -0,0 +1 @@ +BGP neighbor is 200.200.200.1, remote AS 3, local AS 2 no-prepend replace-as, external link diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_1_0_4_0_24.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_1_0_4_0_24.txt new file mode 100644 index 000000000..31895d6a4 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_1_0_4_0_24.txt @@ -0,0 +1,8 @@ +BGP routing table entry for 3:3:1.0.4.0/24, version 3 +Paths: (1 available, best #1, table CustB) + Not advertised to any peer + Refresh Epoch 1 + Local + 169.254.255.1 (via vrf CustB) from 169.254.255.1 (1.1.1.1) + Origin IGP, metric 0, localpref 100, valid, internal, best + rx pathid: 0, tx pathid: 0x0 diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_neighbors___include_is_169_254_255_1.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_neighbors___include_is_169_254_255_1.txt new file mode 100644 index 000000000..7c70cf487 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_bgp_vpnv4_vrf_CustB_neighbors___include_is_169_254_255_1.txt @@ -0,0 +1 @@ +BGP neighbor is 169.254.255.1, vrf CustB, remote AS 1, internal link diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_protocols___include_bgp.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_protocols___include_bgp.txt new file mode 100644 index 000000000..87aa166dc --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_protocols___include_bgp.txt @@ -0,0 +1 @@ +Routing Protocol is "bgp 1" diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_1_0_4_0_255_255_255_0.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_1_0_4_0_255_255_255_0.txt new file mode 100644 index 000000000..5f43ba8d9 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_1_0_4_0_255_255_255_0.txt @@ -0,0 +1,10 @@ +Routing entry for 1.0.4.0/24 + Known via "bgp 1", distance 20, metric 0 + Tag 3, type external + Last update from 200.200.200.1 00:01:02 ago + Routing Descriptor Blocks: + * 200.200.200.1, from 200.200.200.1, 00:01:02 ago + Route metric is 0, traffic share count is 1 + AS Hops 4 + Route tag 3 + MPLS label: none diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustA_1_0_4_0_255_255_255_0.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustA_1_0_4_0_255_255_255_0.txt new file mode 100644 index 000000000..3c5449984 --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustA_1_0_4_0_255_255_255_0.txt @@ -0,0 +1 @@ +% Network not in table diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustB_1_0_4_0_255_255_255_0.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustB_1_0_4_0_255_255_255_0.txt new file mode 100644 index 000000000..c3c8dba2e --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_ip_route_vrf_CustB_1_0_4_0_255_255_255_0.txt @@ -0,0 +1,10 @@ + +Routing Table: CustB +Routing entry for 1.0.4.0/24 + Known via "bgp 1", distance 200, metric 0, type internal + Last update from 169.254.255.1 00:01:38 ago + Routing Descriptor Blocks: + * 169.254.255.1, from 169.254.255.1, 00:01:38 ago + Route metric is 0, traffic share count is 1 + AS Hops 0 + MPLS label: none diff --git a/test/ios/mocked_data/test_get_route_to/non_exact/show_vrf.txt b/test/ios/mocked_data/test_get_route_to/non_exact/show_vrf.txt new file mode 100644 index 000000000..dd96083fa --- /dev/null +++ b/test/ios/mocked_data/test_get_route_to/non_exact/show_vrf.txt @@ -0,0 +1,3 @@ + Name Default RD Protocols Interfaces + CustA 2:2 ipv4 Et0/1 + CustB 3:3 ipv4 Et0/2 diff --git a/test/iosxr/mocked_data/test_get_arp_table/normal/expected_result.json b/test/iosxr/mocked_data/test_get_arp_table/normal/expected_result.json index 77d0d5e76..10445d202 100644 --- a/test/iosxr/mocked_data/test_get_arp_table/normal/expected_result.json +++ b/test/iosxr/mocked_data/test_get_arp_table/normal/expected_result.json @@ -2,7 +2,7 @@ "interface": "BVI10", "ip": "192.1.68.8", "mac": "D4:6D:50:05:B1:0E", - "age": 0.0 + "age": -1.0 }, { "interface": "BVI10", "ip": "192.1.68.8", @@ -162,12 +162,12 @@ "interface": "BVI637", "ip": "192.16.86.8", "mac": "D4:6D:50:05:B1:0E", - "age": 0.0 + "age": -1.0 }, { "interface": "BVI637", "ip": "192.16.87.8", "mac": "D4:6D:50:05:B1:0E", - "age": 0.0 + "age": -1.0 }, { "interface": "BVI637", "ip": "192.16.87.8", @@ -252,7 +252,7 @@ "interface": "BVI900", "ip": "192.168.5.2", "mac": "D4:6D:50:05:B1:0E", - "age": 0.0 + "age": -1.0 }, { "interface": "BVI900", "ip": "192.168.52.18", @@ -272,7 +272,7 @@ "interface": "BVI100", "ip": "192.168.53.1", "mac": "D4:6D:50:05:B1:0E", - "age": 0.0 + "age": -1.0 }, { "interface": "BVI100", "ip": "192.168.53.4", diff --git a/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/expected_result.json b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/expected_result.json new file mode 100644 index 000000000..ff0a30496 --- /dev/null +++ b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/expected_result.json @@ -0,0 +1,702 @@ +{ + "mgmt0": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 3679872971, + "rx_octets": 3567836622, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 6075188, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/1": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/2": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 5399880000, + "rx_octets": 0, + "tx_unicast_packets": 45219243, + "rx_unicast_packets": 0, + "tx_multicast_packets": 16482785, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 381158, + "rx_broadcast_packets": 0 + }, + "Ethernet1/3": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 4476086054, + "rx_octets": 0, + "tx_unicast_packets": 39066086, + "rx_unicast_packets": 0, + "tx_multicast_packets": 7570238, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 1240936, + "rx_broadcast_packets": 0 + }, + "Ethernet1/4": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 445884370181, + "rx_octets": 94486427294, + "tx_unicast_packets": 417535490, + "rx_unicast_packets": 313833591, + "tx_multicast_packets": 491910934, + "rx_multicast_packets": 23955302, + "tx_broadcast_packets": 384752, + "rx_broadcast_packets": 443 + }, + "Ethernet1/5": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 6446385184340, + "rx_octets": 1560457254436, + "tx_unicast_packets": 5993262869, + "rx_unicast_packets": 5335856024, + "tx_multicast_packets": 16605342, + "rx_multicast_packets": 1419241, + "tx_broadcast_packets": 1240414, + "rx_broadcast_packets": 43 + }, + "Ethernet1/6": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 4474527321, + "rx_octets": 1944, + "tx_unicast_packets": 39056024, + "rx_unicast_packets": 0, + "tx_multicast_packets": 7568252, + "rx_multicast_packets": 26, + "tx_broadcast_packets": 1240565, + "rx_broadcast_packets": 0 + }, + "Ethernet1/7": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 5399762948, + "rx_octets": 6546, + "tx_unicast_packets": 45218320, + "rx_unicast_packets": 0, + "tx_multicast_packets": 16482339, + "rx_multicast_packets": 99, + "tx_broadcast_packets": 381038, + "rx_broadcast_packets": 0 + }, + "Ethernet1/8": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 5833920736, + "rx_octets": 3324, + "tx_unicast_packets": 47254399, + "rx_unicast_packets": 0, + "tx_multicast_packets": 19502035, + "rx_multicast_packets": 44, + "tx_broadcast_packets": 385310, + "rx_broadcast_packets": 0 + }, + "Ethernet1/9": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 4242440562, + "rx_octets": 0, + "tx_unicast_packets": 39066072, + "rx_unicast_packets": 0, + "tx_multicast_packets": 6748271, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 190108, + "rx_broadcast_packets": 0 + }, + "Ethernet1/10": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 5836433372, + "rx_octets": 0, + "tx_unicast_packets": 47269437, + "rx_unicast_packets": 0, + "tx_multicast_packets": 19508466, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 385851, + "rx_broadcast_packets": 0 + }, + "Ethernet1/11": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 10916695217, + "rx_octets": 5223149869, + "tx_unicast_packets": 55251199, + "rx_unicast_packets": 5577180, + "tx_multicast_packets": 19078189, + "rx_multicast_packets": 1212679, + "tx_broadcast_packets": 200609, + "rx_broadcast_packets": 36 + }, + "Ethernet1/12": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/13": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/14": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/15": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/16": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/17": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/18": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/19": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/20": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/21": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/22": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/23": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/24": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/25": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/26": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/27": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/28": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/29": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/30": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/31": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/32": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/33": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/34": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/35": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/36": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/37": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/38": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/39": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/40": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/41": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/42": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/43": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/44": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/45": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/46": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 21133414461024, + "rx_octets": 6666431359518, + "tx_unicast_packets": 30369677475, + "rx_unicast_packets": 2211936525, + "tx_multicast_packets": 203633648, + "rx_multicast_packets": 7089387601, + "tx_broadcast_packets": 1049559, + "rx_broadcast_packets": 331234 + }, + "Ethernet1/47": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 0, + "rx_octets": 0, + "tx_unicast_packets": 0, + "rx_unicast_packets": 0, + "tx_multicast_packets": 0, + "rx_multicast_packets": 0, + "tx_broadcast_packets": 0, + "rx_broadcast_packets": 0 + }, + "Ethernet1/48": { + "tx_errors": 0, + "rx_errors": 3, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 2286251354, + "rx_octets": 23867695653529, + "tx_unicast_packets": 21053483, + "rx_unicast_packets": 28817171736, + "tx_multicast_packets": 3882370, + "rx_multicast_packets": 60665581, + "tx_broadcast_packets": 4024, + "rx_broadcast_packets": 1241572 + }, + "port-channel69": { + "tx_errors": 0, + "rx_errors": 0, + "tx_discards": 0, + "rx_discards": 0, + "tx_octets": 21133414529641, + "rx_octets": 6666431436697, + "tx_unicast_packets": 30369677722, + "rx_unicast_packets": 2211936587, + "tx_multicast_packets": 203633648, + "rx_multicast_packets": 7089387624, + "tx_broadcast_packets": 1049559, + "rx_broadcast_packets": 331234 + } +} diff --git a/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface___json.txt b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface___json.txt new file mode 100644 index 000000000..9d91563e0 --- /dev/null +++ b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface___json.txt @@ -0,0 +1,4727 @@ +{ + "TABLE_interface": { + "ROW_interface": [ + { + "interface": "mgmt0", + "state": "up", + "admin_state": "up", + "eth_hw_desc": "GigabitEthernet", + "eth_hw_addr": "18e7.2813.5020", + "eth_bia_addr": "18e7.2813.5020", + "eth_ip_addr": "10.117.217.229", + "eth_ip_mask": "25", + "eth_ip_prefix": "10.117.217.128", + "eth_mtu": "1500", + "eth_bw": "1000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_autoneg": "on", + "eth_mdix": "off", + "eth_ethertype": "0x0000", + "vdc_lvl_in_avg_bits": "4896", + "vdc_lvl_in_avg_pkts": "3", + "vdc_lvl_out_avg_bits": "4304", + "vdc_lvl_out_avg_pkts": "1", + "vdc_lvl_in_pkts": "20559846", + "vdc_lvl_in_ucast": "12178425", + "vdc_lvl_in_mcast": "5938155", + "vdc_lvl_in_bcast": "2443266", + "vdc_lvl_in_bytes": "3592332845", + "vdc_lvl_out_pkts": "10533191", + "vdc_lvl_out_ucast": "10464814", + "vdc_lvl_out_mcast": "68365", + "vdc_lvl_out_bcast": "12", + "vdc_lvl_out_bytes": "3678843272" + }, + { + "interface": "Ethernet1/1", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.507c", + "eth_bia_addr": "18e7.2813.5028", + "eth_mtu": "1500", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/2", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5029", + "eth_bia_addr": "18e7.2813.5029", + "desc": "SIL-VOLT-202_SF_P2", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "6week(s) 5day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "1", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "10280", + "eth_outrate1_pkts": "13", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "10.28 Kbps", + "eth_outrate1_summary_pkts": "13 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "9944", + "eth_outrate2_pkts": "12", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "9.94 Kbps", + "eth_outrate2_summary_pkts": "12 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "45216908", + "eth_outmcast": "16481950", + "eth_outbcast": "381154", + "eth_outpkts": "62080012", + "eth_outbytes": "5399603280", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/3", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.502a", + "eth_bia_addr": "18e7.2813.502a", + "desc": "SIL-ULLNK-204_SF_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "6week(s) 5day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "1", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "9424", + "eth_outrate1_pkts": "11", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "9.42 Kbps", + "eth_outrate1_summary_pkts": "11 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "8392", + "eth_outrate2_pkts": "8", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "8.39 Kbps", + "eth_outrate2_summary_pkts": "8 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "39064069", + "eth_outmcast": "7569852", + "eth_outbcast": "1240877", + "eth_outpkts": "47874798", + "eth_outbytes": "4475855809", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/4", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.502b", + "eth_bia_addr": "18e7.2813.502b", + "desc": "SIL-VOLT-208_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "1week(s) 6day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "53", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "55104", + "eth_inrate1_pkts": "17", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "322680", + "eth_outrate1_pkts": "111", + "eth_inrate1_summary_bits": "55.10 Kbps", + "eth_inrate1_summary_pkts": "17 pps", + "eth_outrate1_summary_bits": "322.68 Kbps", + "eth_outrate1_summary_pkts": "111 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "72720", + "eth_inrate2_pkts": "9", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "282632", + "eth_outrate2_pkts": "91", + "eth_inrate2_summary_bits": "72.72 Kbps", + "eth_inrate2_summary_pkts": "9 pps", + "eth_outrate2_summary_bits": "282.63 Kbps", + "eth_outrate2_summary_pkts": "91 pps", + "eth_inucast": "313829248", + "eth_inmcast": "23954712", + "eth_inbcast": "443", + "eth_inpkts": "337784403", + "eth_inbytes": "94484566849", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "417528378", + "eth_outmcast": "491892848", + "eth_outbcast": "384748", + "eth_outpkts": "909805977", + "eth_outbytes": "445875762991", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/5", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.502c", + "eth_bia_addr": "18e7.2813.502c", + "desc": "SIL-ULLNK-202_SF_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "1week(s) 3day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "3", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "14563160", + "eth_inrate1_pkts": "6118", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "50130816", + "eth_outrate1_pkts": "6107", + "eth_inrate1_summary_bits": "14.56 Mbps", + "eth_inrate1_summary_pkts": "6.12 Kpps", + "eth_outrate1_summary_bits": "50.13 Mbps", + "eth_outrate1_summary_pkts": "6.11 Kpps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "14223376", + "eth_inrate2_pkts": "6022", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "50199760", + "eth_outrate2_pkts": "6021", + "eth_inrate2_summary_bits": "14.22 Mbps", + "eth_inrate2_summary_pkts": "6.02 Kpps", + "eth_outrate2_summary_bits": "50.20 Mbps", + "eth_outrate2_summary_pkts": "6.02 Kpps", + "eth_inucast": "5334566712", + "eth_inmcast": "1418995", + "eth_inbcast": "43", + "eth_inpkts": "5335985750", + "eth_inbytes": "1560080408100", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "5991975804", + "eth_outmcast": "16604704", + "eth_outbcast": "1240355", + "eth_outpkts": "6009820863", + "eth_outbytes": "6445057131748", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/6", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.502d", + "eth_bia_addr": "18e7.2813.502d", + "desc": "SIL-ULLNK-206_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "1week(s) 6day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "2", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "9368", + "eth_outrate1_pkts": "11", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "9.37 Kbps", + "eth_outrate1_summary_pkts": "11 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "8376", + "eth_outrate2_pkts": "9", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "8.38 Kbps", + "eth_outrate2_summary_pkts": "9 pps", + "eth_inucast": "0", + "eth_inmcast": "26", + "eth_inbcast": "0", + "eth_inpkts": "26", + "eth_inbytes": "1944", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "39054007", + "eth_outmcast": "7567866", + "eth_outbcast": "1240506", + "eth_outpkts": "47862379", + "eth_outbytes": "4474297097", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/7", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.502e", + "eth_bia_addr": "18e7.2813.502e", + "desc": "SIL-VOLT-204_SF_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "6week(s) 4day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "5", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "10320", + "eth_outrate1_pkts": "13", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "10.32 Kbps", + "eth_outrate1_summary_pkts": "13 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "9944", + "eth_outrate2_pkts": "12", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "9.94 Kbps", + "eth_outrate2_summary_pkts": "12 pps", + "eth_inucast": "0", + "eth_inmcast": "99", + "eth_inbcast": "0", + "eth_inpkts": "99", + "eth_inbytes": "6546", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "45215985", + "eth_outmcast": "16481503", + "eth_outbcast": "381034", + "eth_outpkts": "62078522", + "eth_outbytes": "5399486126", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/8", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.502f", + "eth_bia_addr": "18e7.2813.502f", + "desc": "sil-volt-210_SF1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "1week(s) 4day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "4", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "11176", + "eth_outrate1_pkts": "14", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "11.18 Kbps", + "eth_outrate1_summary_pkts": "14 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "10792", + "eth_outrate2_pkts": "12", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "10.79 Kbps", + "eth_outrate2_summary_pkts": "12 pps", + "eth_inucast": "0", + "eth_inmcast": "44", + "eth_inbcast": "0", + "eth_inpkts": "44", + "eth_inbytes": "3324", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "47251957", + "eth_outmcast": "19501042", + "eth_outbcast": "385306", + "eth_outpkts": "67138308", + "eth_outbytes": "5833621240", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/9", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5030", + "eth_bia_addr": "18e7.2813.5030", + "desc": "sil-tibrv-204_SF1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "6week(s) 5day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "1", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "8064", + "eth_outrate1_pkts": "10", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "8.06 Kbps", + "eth_outrate1_summary_pkts": "10 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "7800", + "eth_outrate2_pkts": "9", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "7.80 Kbps", + "eth_outrate2_summary_pkts": "9 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "39064053", + "eth_outmcast": "6747944", + "eth_outbcast": "190108", + "eth_outpkts": "46002108", + "eth_outbytes": "4242223359", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/10", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5031", + "eth_bia_addr": "18e7.2813.5031", + "desc": "sil-voltz-202_SF_P1", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "1week(s) 6day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "4", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "11336", + "eth_outrate1_pkts": "14", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "11.34 Kbps", + "eth_outrate1_summary_pkts": "14 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "10792", + "eth_outrate2_pkts": "12", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "10.79 Kbps", + "eth_outrate2_summary_pkts": "12 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "47266995", + "eth_outmcast": "19507473", + "eth_outbcast": "385847", + "eth_outpkts": "67160318", + "eth_outbytes": "5836134053", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/11", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5032", + "eth_bia_addr": "18e7.2813.5032", + "desc": "sil-volt-206", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "3week(s) 1day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "3", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "28568", + "eth_inrate1_pkts": "1", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "13760", + "eth_outrate1_pkts": "14", + "eth_inrate1_summary_bits": "28.57 Kbps", + "eth_inrate1_summary_pkts": "1 pps", + "eth_outrate1_summary_bits": "13.76 Kbps", + "eth_outrate1_summary_pkts": "14 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "35632", + "eth_inrate2_pkts": "1", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "13784", + "eth_outrate2_pkts": "13", + "eth_inrate2_summary_bits": "35.63 Kbps", + "eth_inrate2_summary_pkts": "1 pps", + "eth_outrate2_summary_bits": "13.78 Kbps", + "eth_outrate2_summary_pkts": "13 pps", + "eth_inucast": "5576415", + "eth_inmcast": "1212460", + "eth_inbcast": "36", + "eth_inpkts": "6788911", + "eth_inbytes": "5222334928", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "55247942", + "eth_outmcast": "19077196", + "eth_outbcast": "200605", + "eth_outpkts": "74525746", + "eth_outbytes": "10916320363", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/12", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5033", + "eth_bia_addr": "18e7.2813.5033", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/13", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5034", + "eth_bia_addr": "18e7.2813.5034", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/14", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5035", + "eth_bia_addr": "18e7.2813.5035", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/15", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5036", + "eth_bia_addr": "18e7.2813.5036", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/16", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5037", + "eth_bia_addr": "18e7.2813.5037", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/17", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5038", + "eth_bia_addr": "18e7.2813.5038", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/18", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5039", + "eth_bia_addr": "18e7.2813.5039", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/19", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.503a", + "eth_bia_addr": "18e7.2813.503a", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/20", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.503b", + "eth_bia_addr": "18e7.2813.503b", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/21", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.503c", + "eth_bia_addr": "18e7.2813.503c", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/22", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.503d", + "eth_bia_addr": "18e7.2813.503d", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/23", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.503e", + "eth_bia_addr": "18e7.2813.503e", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/24", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.503f", + "eth_bia_addr": "18e7.2813.503f", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/25", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5040", + "eth_bia_addr": "18e7.2813.5040", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/26", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5041", + "eth_bia_addr": "18e7.2813.5041", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/27", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5042", + "eth_bia_addr": "18e7.2813.5042", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/28", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5043", + "eth_bia_addr": "18e7.2813.5043", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/29", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5044", + "eth_bia_addr": "18e7.2813.5044", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/30", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5045", + "eth_bia_addr": "18e7.2813.5045", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/31", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5046", + "eth_bia_addr": "18e7.2813.5046", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/32", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5047", + "eth_bia_addr": "18e7.2813.5047", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/33", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5048", + "eth_bia_addr": "18e7.2813.5048", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/34", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5049", + "eth_bia_addr": "18e7.2813.5049", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/35", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.504a", + "eth_bia_addr": "18e7.2813.504a", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/36", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.504b", + "eth_bia_addr": "18e7.2813.504b", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/37", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.504c", + "eth_bia_addr": "18e7.2813.504c", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/38", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.504d", + "eth_bia_addr": "18e7.2813.504d", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/39", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.504e", + "eth_bia_addr": "18e7.2813.504e", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/40", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.504f", + "eth_bia_addr": "18e7.2813.504f", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/41", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5050", + "eth_bia_addr": "18e7.2813.5050", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/42", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5051", + "eth_bia_addr": "18e7.2813.5051", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/43", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5052", + "eth_bia_addr": "18e7.2813.5052", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/44", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5053", + "eth_bia_addr": "18e7.2813.5053", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/45", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000/40000 Ethernet", + "eth_hw_addr": "18e7.2813.5054", + "eth_bia_addr": "18e7.2813.5054", + "eth_mtu": "9216", + "eth_bw": "40000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/46", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_bundle": "Po69", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5055", + "eth_bia_addr": "18e7.2813.5055", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "6week(s) 5day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "1", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "20672616", + "eth_inrate1_pkts": "3209", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "16506768", + "eth_outrate1_pkts": "7487", + "eth_inrate1_summary_bits": "20.67 Mbps", + "eth_inrate1_summary_pkts": "3.21 Kpps", + "eth_outrate1_summary_bits": "16.51 Mbps", + "eth_outrate1_summary_pkts": "7.49 Kpps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "21302480", + "eth_inrate2_pkts": "3281", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "17038672", + "eth_outrate2_pkts": "7631", + "eth_inrate2_summary_bits": "21.30 Mbps", + "eth_inrate2_summary_pkts": "3.28 Kpps", + "eth_outrate2_summary_bits": "17.04 Mbps", + "eth_outrate2_summary_pkts": "7.63 Kpps", + "eth_inucast": "2211543235", + "eth_inmcast": "7089088721", + "eth_inbcast": "331234", + "eth_inpkts": "9300963190", + "eth_inbytes": "6665875223899", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "30368067764", + "eth_outmcast": "203628902", + "eth_outbcast": "1049505", + "eth_outpkts": "30572746174", + "eth_outbytes": "21132967782237", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/47", + "state": "down", + "state_rsn_desc": "XCVR not inserted", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5056", + "eth_bia_addr": "18e7.2813.5056", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "access", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": "0", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "0", + "eth_inrate1_pkts": "0", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "0", + "eth_outrate1_pkts": "0", + "eth_inrate1_summary_bits": "0 bps", + "eth_inrate1_summary_pkts": "0 pps", + "eth_outrate1_summary_bits": "0 bps", + "eth_outrate1_summary_pkts": "0 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "0", + "eth_inrate2_pkts": "0", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "0", + "eth_outrate2_pkts": "0", + "eth_inrate2_summary_bits": "0 bps", + "eth_inrate2_summary_pkts": "0 pps", + "eth_outrate2_summary_bits": "0 bps", + "eth_outrate2_summary_pkts": "0 pps", + "eth_inucast": "0", + "eth_inmcast": "0", + "eth_inbcast": "0", + "eth_inpkts": "0", + "eth_inbytes": "0", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "0", + "eth_outmcast": "0", + "eth_outbcast": "0", + "eth_outpkts": "0", + "eth_outbytes": "0", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Ethernet1/48", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "100/1000/10000 Ethernet", + "eth_hw_addr": "18e7.2813.5057", + "eth_bia_addr": "18e7.2813.5057", + "desc": "WPO-TLD4-023_E1/30", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_media": "10G", + "eth_beacon": "off", + "eth_autoneg": "on", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_ratemode": "dedicated", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_admin_fec_state": "auto", + "eth_oper_fec_state": "off", + "eth_link_flapped": "4week(s) 5day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": "2", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "36803352", + "eth_inrate1_pkts": "5604", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "3616", + "eth_outrate1_pkts": "4", + "eth_inrate1_summary_bits": "36.80 Mbps", + "eth_inrate1_summary_pkts": "5.60 Kpps", + "eth_outrate1_summary_bits": "3.62 Kbps", + "eth_outrate1_summary_pkts": "4 pps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "37684672", + "eth_inrate2_pkts": "5751", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "3136", + "eth_outrate2_pkts": "2", + "eth_inrate2_summary_bits": "37.68 Mbps", + "eth_inrate2_summary_pkts": "5.75 Kpps", + "eth_outrate2_summary_bits": "3.14 Kbps", + "eth_outrate2_summary_pkts": "2 pps", + "eth_inucast": "28815960760", + "eth_inmcast": "60659912", + "eth_inbcast": "1241514", + "eth_inpkts": "28877862189", + "eth_inbytes": "23866703422282", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "3", + "eth_nobuf": "0", + "eth_inerr": "3", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "21052550", + "eth_outmcast": "3882160", + "eth_outbcast": "4024", + "eth_outpkts": "24938734", + "eth_outbytes": "2286153868", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "port-channel69", + "state": "up", + "admin_state": "up", + "eth_hw_desc": "Port-Channel", + "eth_hw_addr": "18e7.2813.5055", + "eth_bia_addr": "18e7.2813.5055", + "eth_mtu": "9216", + "eth_bw": "10000000", + "eth_dly": "10", + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "trunk", + "eth_duplex": "full", + "eth_speed": "10 Gb/s", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_members": "Eth1/46", + "eth_clear_counters": "never", + "eth_reset_cntr": "1", + "eth_load_interval1_rx": "30", + "eth_inrate1_bits": "20672616", + "eth_inrate1_pkts": "3209", + "eth_load_interval1_tx": "30", + "eth_outrate1_bits": "16506768", + "eth_outrate1_pkts": "7487", + "eth_inrate1_summary_bits": "20.67 Mbps", + "eth_inrate1_summary_pkts": "3.21 Kpps", + "eth_outrate1_summary_bits": "16.51 Mbps", + "eth_outrate1_summary_pkts": "7.49 Kpps", + "eth_load_interval2_rx": "300", + "eth_inrate2_bits": "21302480", + "eth_inrate2_pkts": "3281", + "eth_load_interval2_tx": "300", + "eth_outrate2_bits": "17038672", + "eth_outrate2_pkts": "7631", + "eth_inrate2_summary_bits": "21.30 Mbps", + "eth_inrate2_summary_pkts": "3.28 Kpps", + "eth_outrate2_summary_bits": "17.04 Mbps", + "eth_outrate2_summary_pkts": "7.63 Kpps", + "eth_inucast": "2211543312", + "eth_inmcast": "7089088740", + "eth_inbcast": "331234", + "eth_inpkts": "9300963286", + "eth_inbytes": "6665875310042", + "eth_jumbo_inpkts": "0", + "eth_storm_supp": "0", + "eth_runts": "0", + "eth_giants": "0", + "eth_crc": "0", + "eth_nobuf": "0", + "eth_inerr": "0", + "eth_frame": "0", + "eth_overrun": "0", + "eth_underrun": "0", + "eth_ignored": "0", + "eth_watchdog": "0", + "eth_bad_eth": "0", + "eth_bad_proto": "0", + "eth_in_ifdown_drops": "0", + "eth_dribble": "0", + "eth_indiscard": "0", + "eth_inpause": "0", + "eth_outucast": "30368068041", + "eth_outmcast": "203628902", + "eth_outbcast": "1049505", + "eth_outpkts": "30572746451", + "eth_outbytes": "21132967857368", + "eth_jumbo_outpkts": "0", + "eth_outerr": "0", + "eth_coll": "0", + "eth_deferred": "0", + "eth_latecoll": "0", + "eth_lostcarrier": "0", + "eth_nocarrier": "0", + "eth_babbles": "0", + "eth_outdiscard": "0", + "eth_outpause": "0" + }, + { + "interface": "Vlan1", + "svi_admin_state": "down", + "svi_rsn_desc": "Administratively down", + "svi_line_proto": "down", + "svi_mac": "18e7.2813.507c", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "1230553", + "svi_ucast_bytes_in": "363118703" + }, + { + "interface": "Vlan69", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_ip_addr": "10.117.254.89", + "svi_ip_mask": "31", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "18080063", + "svi_ucast_bytes_in": "1501598998" + }, + { + "interface": "Vlan569", + "svi_admin_state": "down", + "svi_rsn_desc": "Administratively down", + "svi_line_proto": "down", + "svi_mac": "18e7.2813.507c", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "0", + "svi_ucast_bytes_in": "0" + }, + { + "interface": "Vlan669", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "Interco_UAT-023", + "svi_ip_addr": "10.117.254.245", + "svi_ip_mask": "30", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "38", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "28864686918", + "svi_ucast_bytes_in": "23862533219879" + }, + { + "interface": "Vlan1807", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "Cash_UAT", + "svi_ip_addr": "10.117.2.253", + "svi_ip_mask": "24", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "56532850", + "svi_ucast_bytes_in": "14146131315" + }, + { + "interface": "Vlan2101", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "ACT_UAT", + "svi_ip_addr": "10.117.1.253", + "svi_ip_mask": "24", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "3", + "svi_rx_load": "6", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "7810760575", + "svi_ucast_bytes_in": "4783485575879" + }, + { + "interface": "Vlan2117", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "Ullink_UAT", + "svi_ip_addr": "10.248.117.141", + "svi_ip_mask": "28", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "66", + "svi_rx_load": "30", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "7362291428", + "svi_ucast_bytes_in": "3516026226141" + }, + { + "interface": "Vlan2119", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "Ullink_UAT", + "svi_ip_addr": "10.248.117.77", + "svi_ip_mask": "28", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "31909945", + "svi_ucast_bytes_in": "5551060478" + }, + { + "interface": "Vlan2611", + "svi_admin_state": "down", + "svi_rsn_desc": "Administratively down", + "svi_line_proto": "down", + "svi_mac": "18e7.2813.507c", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "0", + "svi_ucast_bytes_in": "0" + }, + { + "interface": "Vlan3934", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "SFTI_Server_Side_UAT_Cash", + "svi_ip_addr": "10.205.67.77", + "svi_ip_mask": "28", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "32657193", + "svi_ucast_bytes_in": "5629350137" + }, + { + "interface": "Vlan3938", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "Instinet_servers_side", + "svi_ip_addr": "10.121.224.3", + "svi_ip_mask": "27", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "6953407", + "svi_ucast_bytes_in": "494941536" + }, + { + "interface": "Vlan3947", + "svi_admin_state": "up", + "svi_line_proto": "up", + "svi_mac": "18e7.2813.507c", + "svi_desc": "LSE_1Gb_UAT_Cash", + "svi_ip_addr": "10.23.46.221", + "svi_ip_mask": "27", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "svi_tx_load": "1", + "svi_rx_load": "1", + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "svi_ucast_pkts_in": "31970062", + "svi_ucast_bytes_in": "5555296480" + } + ] + } +} diff --git a/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface_counters_detailed___json.txt b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface_counters_detailed___json.txt new file mode 100644 index 000000000..49a10b6ee --- /dev/null +++ b/test/nxos_ssh/mocked_data/test_get_interfaces_counters/Nexus3548/show_interface_counters_detailed___json.txt @@ -0,0 +1,489 @@ +{ + "TABLE_interface": { + "ROW_interface": [ + { + "interface": "mgmt0", + "mgmt_in_pkts": "20733482", + "mgmt_in_bytes": "3567836622", + "mgmt_in_mcast": "6075188", + "mgmt_out_pkts": "10706589", + "mgmt_out_bytes": "3679872971" + }, + { + "interface": "Ethernet1/1" + }, + { + "interface": "Ethernet1/2", + "eth_outpkts": "62083186", + "eth_outucast": "45219243", + "eth_outmcast": "16482785", + "eth_outbcast": "381158", + "eth_outbytes": "5399880000", + "eth_outb64": "124725", + "eth_outb65_127": "61753136", + "eth_outb128_255": "169", + "eth_outb256_511": "205127", + "eth_outb512_1023": "19", + "eth_outb1024_1518": "4", + "eth_outtrunk": "61946449" + }, + { + "interface": "Ethernet1/3", + "eth_outpkts": "47877260", + "eth_outucast": "39066086", + "eth_outmcast": "7570238", + "eth_outbcast": "1240936", + "eth_outbytes": "4476086054", + "eth_outb64": "105674", + "eth_outb65_127": "46882028", + "eth_outb128_255": "684056", + "eth_outb256_511": "205494", + "eth_outb512_1023": "1", + "eth_outb1024_1518": "1", + "eth_outtrunk": "47740523" + }, + { + "interface": "Ethernet1/4", + "eth_inpkts": "337789336", + "eth_inucast": "313833591", + "eth_inmcast": "23955302", + "eth_inbcast": "443", + "eth_inbytes": "94486427294", + "eth_inb64": "6316659", + "eth_inb65_127": "215256831", + "eth_inb128_255": "28603510", + "eth_inb256_511": "34266327", + "eth_inb512_1023": "23878957", + "eth_inb1024_1518": "7494394", + "eth_intrunk": "337789310", + "eth_outpkts": "909831179", + "eth_outucast": "417535490", + "eth_outmcast": "491910934", + "eth_outbcast": "384752", + "eth_outbytes": "445884370181", + "eth_outb64": "150379", + "eth_outb65_127": "222078763", + "eth_outb128_255": "152728198", + "eth_outb256_511": "235578019", + "eth_outb512_1023": "156132252", + "eth_outb1024_1518": "116517133", + "eth_outtrunk": "904613959", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/5", + "eth_inpkts": "5337275308", + "eth_inucast": "5335856024", + "eth_inmcast": "1419241", + "eth_inbcast": "43", + "eth_inbytes": "1560457254436", + "eth_inb64": "7860814", + "eth_inb65_127": "2627434964", + "eth_inb128_255": "26873531", + "eth_inb256_511": "2581620412", + "eth_inb512_1023": "44785654", + "eth_inb1024_1518": "32986010", + "eth_intrunk": "5337275258", + "eth_outpkts": "6011108625", + "eth_outucast": "5993262869", + "eth_outmcast": "16605342", + "eth_outbcast": "1240414", + "eth_outbytes": "6446385184340", + "eth_outb64": "117568", + "eth_outb65_127": "163864639", + "eth_outb128_255": "23119170", + "eth_outb256_511": "40392448", + "eth_outb512_1023": "2561958217", + "eth_outb1024_1518": "17043393", + "eth_outtrunk": "6010971880" + }, + { + "interface": "Ethernet1/6", + "eth_inpkts": "26", + "eth_inmcast": "26", + "eth_inbytes": "1944", + "eth_inb64": "6", + "eth_inb65_127": "20", + "eth_outpkts": "47864841", + "eth_outucast": "39056024", + "eth_outmcast": "7568252", + "eth_outbcast": "1240565", + "eth_outbytes": "4474527321", + "eth_outb64": "105670", + "eth_outb65_127": "46869799", + "eth_outb128_255": "683901", + "eth_outb256_511": "205463", + "eth_outb512_1023": "1", + "eth_outb1024_1518": "1", + "eth_outtrunk": "47728120" + }, + { + "interface": "Ethernet1/7", + "eth_inpkts": "99", + "eth_inmcast": "99", + "eth_inbytes": "6546", + "eth_inb64": "90", + "eth_inb65_127": "9", + "eth_outpkts": "62081697", + "eth_outucast": "45218320", + "eth_outmcast": "16482339", + "eth_outbcast": "381038", + "eth_outbytes": "5399762948", + "eth_outb64": "124621", + "eth_outb65_127": "61751711", + "eth_outb128_255": "169", + "eth_outb256_511": "205167", + "eth_outb512_1023": "19", + "eth_outb1024_1518": "4", + "eth_outtrunk": "61944930" + }, + { + "interface": "Ethernet1/8", + "eth_inpkts": "44", + "eth_inmcast": "44", + "eth_inbytes": "3324", + "eth_inb64": "6", + "eth_inb65_127": "38", + "eth_outpkts": "67141747", + "eth_outucast": "47254399", + "eth_outmcast": "19502035", + "eth_outbcast": "385310", + "eth_outbytes": "5833920736", + "eth_outb64": "129564", + "eth_outb65_127": "66806888", + "eth_outb128_255": "169", + "eth_outb256_511": "205097", + "eth_outb512_1023": "19", + "eth_outb1024_1518": "4", + "eth_outtrunk": "61924811", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/9", + "eth_outpkts": "46004454", + "eth_outucast": "39066072", + "eth_outmcast": "6748271", + "eth_outbcast": "190108", + "eth_outbytes": "4242440562", + "eth_outb64": "33199", + "eth_outb65_127": "45765937", + "eth_outb128_255": "165", + "eth_outb256_511": "205124", + "eth_outb512_1023": "19", + "eth_outb1024_1518": "4", + "eth_outtrunk": "40785725", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/10", + "eth_outpkts": "67163757", + "eth_outucast": "47269437", + "eth_outmcast": "19508466", + "eth_outbcast": "385851", + "eth_outbytes": "5836433372", + "eth_outb64": "129665", + "eth_outb65_127": "66828740", + "eth_outb128_255": "169", + "eth_outb256_511": "205154", + "eth_outb512_1023": "19", + "eth_outb1024_1518": "4", + "eth_outtrunk": "61945096", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/11", + "eth_inpkts": "6789895", + "eth_inucast": "5577180", + "eth_inmcast": "1212679", + "eth_inbcast": "36", + "eth_inbytes": "5223149869", + "eth_inb64": "35354", + "eth_inb65_127": "3061991", + "eth_inb128_255": "250895", + "eth_inb256_511": "237983", + "eth_inb512_1023": "8156", + "eth_inb1024_1518": "278101", + "eth_intrunk": "6789884", + "eth_outpkts": "74530000", + "eth_outucast": "55251199", + "eth_outmcast": "19078189", + "eth_outbcast": "200609", + "eth_outbytes": "10916695217", + "eth_outb64": "103075", + "eth_outb65_127": "70629266", + "eth_outb128_255": "44178", + "eth_outb256_511": "483741", + "eth_outb512_1023": "316005", + "eth_outb1024_1518": "12456", + "eth_outtrunk": "69311345", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/12" + }, + { + "interface": "Ethernet1/13" + }, + { + "interface": "Ethernet1/14" + }, + { + "interface": "Ethernet1/15" + }, + { + "interface": "Ethernet1/16" + }, + { + "interface": "Ethernet1/17" + }, + { + "interface": "Ethernet1/18" + }, + { + "interface": "Ethernet1/19" + }, + { + "interface": "Ethernet1/20" + }, + { + "interface": "Ethernet1/21" + }, + { + "interface": "Ethernet1/22" + }, + { + "interface": "Ethernet1/23" + }, + { + "interface": "Ethernet1/24" + }, + { + "interface": "Ethernet1/25" + }, + { + "interface": "Ethernet1/26" + }, + { + "interface": "Ethernet1/27" + }, + { + "interface": "Ethernet1/28" + }, + { + "interface": "Ethernet1/29" + }, + { + "interface": "Ethernet1/30" + }, + { + "interface": "Ethernet1/31" + }, + { + "interface": "Ethernet1/32" + }, + { + "interface": "Ethernet1/33" + }, + { + "interface": "Ethernet1/34" + }, + { + "interface": "Ethernet1/35" + }, + { + "interface": "Ethernet1/36" + }, + { + "interface": "Ethernet1/37" + }, + { + "interface": "Ethernet1/38" + }, + { + "interface": "Ethernet1/39" + }, + { + "interface": "Ethernet1/40" + }, + { + "interface": "Ethernet1/41" + }, + { + "interface": "Ethernet1/42" + }, + { + "interface": "Ethernet1/43" + }, + { + "interface": "Ethernet1/44" + }, + { + "interface": "Ethernet1/45" + }, + { + "interface": "Ethernet1/46", + "eth_inpkts": "9301655360", + "eth_inucast": "2211936525", + "eth_inmcast": "7089387601", + "eth_inbcast": "331234", + "eth_inbytes": "6666431359518", + "eth_inb64": "267353", + "eth_inb65_127": "220241597", + "eth_inb128_255": "196651378", + "eth_inb256_511": "3192677061", + "eth_inb512_1023": "3427580461", + "eth_inb1024_1518": "1322330443", + "eth_intrunk": "9301313520", + "eth_outpkts": "30574360685", + "eth_outucast": "30369677475", + "eth_outmcast": "203633648", + "eth_outbcast": "1049559", + "eth_outbytes": "21133414461024", + "eth_outb64": "15835057", + "eth_outb65_127": "7337228133", + "eth_outb128_255": "2763410951", + "eth_outb256_511": "5271165286", + "eth_outb512_1023": "5880781610", + "eth_outb1024_1518": "259990987", + "eth_outtrunk": "30569916779", + "eth_outcrc": "3" + }, + { + "interface": "Ethernet1/47" + }, + { + "interface": "Ethernet1/48", + "eth_inpkts": "28879078892", + "eth_inucast": "28817171736", + "eth_inmcast": "60665581", + "eth_inbcast": "1241572", + "eth_inbytes": "23867695653529", + "eth_inb64": "134383", + "eth_inb65_127": "4611915254", + "eth_inb128_255": "2713533868", + "eth_inb256_511": "2654989332", + "eth_inb512_1023": "7409893532", + "eth_inb1024_1518": "190964291", + "eth_intrunk": "28878873785", + "eth_outpkts": "24939877", + "eth_outucast": "21053483", + "eth_outmcast": "3882370", + "eth_outbcast": "4024", + "eth_outbytes": "2286251354", + "eth_outb64": "320991", + "eth_outb65_127": "22959375", + "eth_outb128_255": "498536", + "eth_outb256_511": "1128412", + "eth_outb512_1023": "24064", + "eth_outb1024_1518": "1900", + "eth_outtrunk": "24734775", + "eth_crc": "3", + "eth_inerr": "3" + }, + { + "interface": "port-channel69", + "eth_inpkts": "9301655445", + "eth_inucast": "2211936587", + "eth_inmcast": "7089387624", + "eth_inbcast": "331234", + "eth_inbytes": "6666431436697", + "eth_inb64": "267353", + "eth_inb65_127": "220241597", + "eth_inb128_255": "196651378", + "eth_inb256_511": "3192677069", + "eth_inb512_1023": "3427580509", + "eth_inb1024_1518": "1322330443", + "eth_intrunk": "9301313614", + "eth_outpkts": "30574360931", + "eth_outucast": "30369677722", + "eth_outmcast": "203633648", + "eth_outbcast": "1049559", + "eth_outbytes": "21133414529641", + "eth_outb64": "15835057", + "eth_outb65_127": "7337228258", + "eth_outb128_255": "2763410952", + "eth_outb256_511": "5271165408", + "eth_outb512_1023": "5880781610", + "eth_outb1024_1518": "259990987", + "eth_outtrunk": "30569917029", + "eth_outcrc": "3" + }, + { + "interface": "Vlan1", + "svi_ucast_bytes_in": "363138814", + "svi_ucast_pkts_in": "1230621", + "svi_ucast_bytes_out": "206606898", + "svi_ucast_pkts_out": "683676" + }, + { + "interface": "Vlan69", + "svi_ucast_bytes_in": "1501673330", + "svi_ucast_pkts_in": "18080963", + "svi_ucast_bytes_out": "1107717529", + "svi_ucast_pkts_out": "11436296" + }, + { + "interface": "Vlan569" + }, + { + "interface": "Vlan669", + "svi_ucast_bytes_in": "23863517065889", + "svi_ucast_pkts_in": "28865891349", + "svi_ucast_bytes_out": "1404156078", + "svi_ucast_pkts_out": "15770289" + }, + { + "interface": "Vlan1807", + "svi_ucast_bytes_in": "14147208799", + "svi_ucast_pkts_in": "56536698", + "svi_ucast_bytes_out": "14182523153", + "svi_ucast_pkts_out": "57332788" + }, + { + "interface": "Vlan2101", + "svi_ucast_bytes_in": "4783642645594", + "svi_ucast_pkts_in": "7811073487", + "svi_ucast_bytes_out": "4344308777259", + "svi_ucast_pkts_out": "12587605482" + }, + { + "interface": "Vlan2117", + "svi_ucast_bytes_in": "3516797443820", + "svi_ucast_pkts_in": "7363962822", + "svi_ucast_bytes_out": "23685193142068", + "svi_ucast_pkts_out": "25074490911" + }, + { + "interface": "Vlan2119", + "svi_ucast_bytes_in": "5551373216", + "svi_ucast_pkts_in": "31911677", + "svi_ucast_bytes_out": "2576220332", + "svi_ucast_pkts_out": "35145817" + }, + { + "interface": "Vlan2611" + }, + { + "interface": "Vlan3934", + "svi_ucast_bytes_in": "5629664621", + "svi_ucast_pkts_in": "32658950", + "svi_ucast_bytes_out": "9323561844", + "svi_ucast_pkts_out": "58849701" + }, + { + "interface": "Vlan3938", + "svi_ucast_bytes_in": "494966876", + "svi_ucast_pkts_in": "6953763", + "svi_ucast_bytes_out": "594745728", + "svi_ucast_pkts_out": "8379176" + }, + { + "interface": "Vlan3947", + "svi_ucast_bytes_in": "5555609170", + "svi_ucast_pkts_in": "31971793", + "svi_ucast_bytes_out": "2500965121", + "svi_ucast_pkts_out": "34525067" + } + ] + } +}