diff --git a/napalm/__init__.py b/napalm/__init__.py index ef3ecdfcd..c445bc7ef 100644 --- a/napalm/__init__.py +++ b/napalm/__init__.py @@ -19,4 +19,6 @@ "eos", "ios", "junos", + "nxos", + "nxos_ssh", ] diff --git a/napalm/nxos/__init__.py b/napalm/nxos/__init__.py new file mode 100644 index 000000000..341585599 --- /dev/null +++ b/napalm/nxos/__init__.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Dravetech AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +"""napalm.nxos package.""" + +# Import stdlib +import pkg_resources + +# Import local modules +from napalm.nxos.nxos import NXOSDriver # noqa + +try: + __version__ = pkg_resources.get_distribution('napalm-nxos').version +except pkg_resources.DistributionNotFound: + __version__ = "Not installed" + +__all__ = ('NXOSDriver',) diff --git a/napalm/nxos/nxos.py b/napalm/nxos/nxos.py new file mode 100644 index 000000000..a16fed869 --- /dev/null +++ b/napalm/nxos/nxos.py @@ -0,0 +1,970 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Spotify AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +from __future__ import unicode_literals + +# import stdlib +import re +import time +import tempfile +from datetime import datetime +from requests.exceptions import ConnectionError + +# import third party lib +from netaddr import IPAddress +from netaddr.core import AddrFormatError + +from pynxos.device import Device as NXOSDevice +from pynxos.features.file_copy import FileTransferError as NXOSFileTransferError +from pynxos.features.file_copy import FileCopy +from pynxos.errors import CLIError + +# import NAPALM Base +import napalm.base.helpers +from napalm.base import NetworkDriver +from napalm.base.utils import py23_compat +from napalm.base.exceptions import ConnectionException +from napalm.base.exceptions import MergeConfigException +from napalm.base.exceptions import CommandErrorException +from napalm.base.exceptions import ReplaceConfigException +import napalm.base.constants as c + + +class NXOSDriver(NetworkDriver): + def __init__(self, hostname, username, password, timeout=60, optional_args=None): + if optional_args is None: + optional_args = {} + self.hostname = hostname + self.username = username + self.password = password + self.timeout = timeout + self.up = False + self.replace = True + self.loaded = False + self.fc = None + self.changed = False + self.replace_file = None + self.merge_candidate = '' + + if optional_args is None: + optional_args = {} + + # nxos_protocol is there for backwards compatibility, transport is the preferred method + self.transport = optional_args.get('transport', optional_args.get('nxos_protocol', 'https')) + + if self.transport == 'https': + self.port = optional_args.get('port', 443) + elif self.transport == 'http': + self.port = optional_args.get('port', 80) + + def open(self): + try: + self.device = NXOSDevice(self.hostname, + self.username, + self.password, + timeout=self.timeout, + port=self.port, + transport=self.transport) + self.device.show('show hostname') + self.up = True + except (CLIError, ValueError): + # unable to open connection + raise ConnectionException('Cannot connect to {}'.format(self.hostname)) + + def close(self): + if self.changed: + self._delete_file(self.backup_file) + self.device = None + + @staticmethod + def _compute_timestamp(stupid_cisco_output): + """ + Some fields such `uptime` are returned as: 23week(s) 3day(s) + This method will determine the epoch of the event. + e.g.: 23week(s) 3day(s) -> 1462248287 + """ + if not stupid_cisco_output or stupid_cisco_output == 'never': + return -1.0 + + if '(s)' in stupid_cisco_output: + pass + elif ':' in stupid_cisco_output: + stupid_cisco_output = stupid_cisco_output.replace(':', 'hour(s) ', 1) + stupid_cisco_output = stupid_cisco_output.replace(':', 'minute(s) ', 1) + stupid_cisco_output += 'second(s)' + else: + stupid_cisco_output = stupid_cisco_output.replace('d', 'day(s) ') + stupid_cisco_output = stupid_cisco_output.replace('h', 'hour(s)') + + things = { + 'second(s)': { + 'weight': 1 + }, + 'minute(s)': { + 'weight': 60 + }, + 'hour(s)': { + 'weight': 3600 + }, + 'day(s)': { + 'weight': 24 * 3600 + }, + 'week(s)': { + 'weight': 7 * 24 * 3600 + }, + 'year(s)': { + 'weight': 365.25 * 24 * 3600 + } + } + + things_keys = things.keys() + for part in stupid_cisco_output.split(): + for key in things_keys: + if key in part: + things[key]['count'] = napalm.base.helpers.convert( + int, part.replace(key, ''), 0) + + delta = sum([det.get('count', 0) * det.get('weight') for det in things.values()]) + return time.time() - delta + + @staticmethod + def _get_reply_body(result): + # useful for debugging + ret = result.get('ins_api', {}).get('outputs', {}).get('output', {}).get('body', {}) + # Original 'body' entry may have been an empty string, don't return that. + if not isinstance(ret, dict): + return {} + return ret + + @staticmethod + def _get_table_rows(parent_table, table_name, row_name): + # because if an inconsistent piece of shit. + # {'TABLE_intf': [{'ROW_intf': { + # vs + # {'TABLE_mac_address': {'ROW_mac_address': [{ + # vs + # {'TABLE_vrf': {'ROW_vrf': {'TABLE_adj': {'ROW_adj': { + _table = parent_table.get(table_name) + _table_rows = [] + if isinstance(_table, list): + _table_rows = [_table_row.get(row_name) for _table_row in _table] + elif isinstance(_table, dict): + _table_rows = _table.get(row_name) + if not isinstance(_table_rows, list): + _table_rows = [_table_rows] + return _table_rows + + @staticmethod + def fix_checkpoint_string(string, filename): + # used to generate checkpoint-like files + pattern = '''!Command: Checkpoint cmd vdc 1''' + + if '!Command' in string: + return re.sub('!Command.*', pattern.format(filename), string) + else: + return "{0}\n{1}".format(pattern.format(filename), string) + + def _get_reply_table(self, result, table_name, row_name): + return self._get_table_rows(result, table_name, row_name) + + def _get_command_table(self, command, table_name, row_name): + json_output = self.device.show(command) + return self._get_reply_table(json_output, table_name, row_name) + + def is_alive(self): + if self.device: + return {'is_alive': True} + else: + return {'is_alive': False} + + def load_replace_candidate(self, filename=None, config=None): + self.replace = True + self.loaded = True + + if not filename and not config: + raise ReplaceConfigException('filename or config param must be provided.') + + if filename is None: + temp_file = tempfile.NamedTemporaryFile() + temp_file.write(config) + temp_file.flush() + cfg_filename = temp_file.name + else: + cfg_filename = filename + + self.replace_file = cfg_filename + + with open(self.replace_file, 'r') as f: + file_content = f.read() + + file_content = self.fix_checkpoint_string(file_content, self.replace_file) + temp_file = tempfile.NamedTemporaryFile() + temp_file.write(file_content) + temp_file.flush() + self.replace_file = cfg_filename + + self._send_file(temp_file.name, cfg_filename) + + def load_merge_candidate(self, filename=None, config=None): + self.replace = False + self.loaded = True + + if not filename and not config: + raise MergeConfigException('filename or config param must be provided.') + + self.merge_candidate += '\n' # insert one extra line + if filename is not None: + with open(filename, "r") as f: + self.merge_candidate += f.read() + else: + self.merge_candidate += config + + def _send_file(self, filename, dest): + self.fc = FileCopy(self.device, filename, dst=dest.split('/')[-1]) + try: + if not self.fc.remote_file_exists(): + self.fc.send() + elif not self.fc.file_already_exists(): + commands = ['terminal dont-ask', + 'delete {0}'.format(self.fc.dst)] + self.device.config_list(commands) + self.fc.send() + except NXOSFileTransferError as fte: + raise ReplaceConfigException(fte.message) + + def _create_sot_file(self): + """Create Source of Truth file to compare.""" + commands = ['terminal dont-ask', 'checkpoint file sot_file'] + self.device.config_list(commands) + + def _get_diff(self, cp_file): + """Get a diff between running config and a proposed file.""" + diff = [] + self._create_sot_file() + diff_out = self.device.show( + 'show diff rollback-patch file {0} file {1}'.format( + 'sot_file', self.replace_file.split('/')[-1]), raw_text=True) + try: + diff_out = diff_out.split( + '#Generating Rollback Patch')[1].replace( + 'Rollback Patch is Empty', '').strip() + for line in diff_out.splitlines(): + if line: + if line[0].strip() != '!': + diff.append(line.rstrip(' ')) + except (AttributeError, KeyError): + raise ReplaceConfigException( + 'Could not calculate diff. It\'s possible the given file doesn\'t exist.') + return '\n'.join(diff) + + def _get_merge_diff(self): + diff = [] + running_config = self.get_config(retrieve='running')['running'] + running_lines = running_config.splitlines() + for line in self.merge_candidate.splitlines(): + if line not in running_lines and line: + if line[0].strip() != '!': + diff.append(line) + return '\n'.join(diff) + # the merge diff is not necessarily what needs to be loaded + # for example under NTP, as the `ntp commit` command might be + # alread configured, it is mandatory to be sent + # otherwise it won't take the new configuration - see #59 + # https://github.com/napalm-automation/napalm-nxos/issues/59 + # therefore this method will return the real diff + # but the merge_candidate will remain unchanged + # previously: self.merge_candidate = '\n'.join(diff) + + def compare_config(self): + if self.loaded: + if not self.replace: + return self._get_merge_diff() + # return self.merge_candidate + diff = self._get_diff(self.fc.dst) + return diff + return '' + + def _commit_merge(self): + commands = [command for command in self.merge_candidate.splitlines() if command] + self.device.config_list(commands) + if not self.device.save(): + raise CommandErrorException('Unable to commit config!') + + def _save_config(self, filename): + """Save the current running config to the given file.""" + self.device.show('checkpoint file {}'.format(filename), raw_text=True) + + def _disable_confirmation(self): + self.device.config('terminal dont-ask') + + def _load_config(self): + cmd = 'rollback running file {0}'.format(self.replace_file.split('/')[-1]) + self._disable_confirmation() + try: + rollback_result = self.device.config(cmd) + except ConnectionError: + # requests will raise an error with verbose warning output + return True + except Exception: + return False + if 'Rollback failed.' in rollback_result['msg'] or 'ERROR' in rollback_result: + raise ReplaceConfigException(rollback_result['msg']) + return True + + def commit_config(self): + if self.loaded: + self.backup_file = 'config_' + str(datetime.now()).replace(' ', '_') + self._save_config(self.backup_file) + if self.replace: + if self._load_config() is False: + raise ReplaceConfigException + else: + try: + self._commit_merge() + self.merge_candidate = '' # clear the merge buffer + except Exception as e: + raise MergeConfigException(str(e)) + + self.changed = True + self.loaded = False + else: + raise ReplaceConfigException('No config loaded.') + + def _delete_file(self, filename): + commands = ['terminal dont-ask', + 'delete {}'.format(filename), + 'no terminal dont-ask'] + self.device.show_list(commands, raw_text=True) + + def discard_config(self): + if self.loaded: + self.merge_candidate = '' # clear the buffer + if self.loaded and self.replace: + try: + self._delete_file(self.fc.dst) + except CLIError: + pass + self.loaded = False + + def rollback(self): + if self.changed: + self.device.rollback(self.backup_file) + self.device.save() + self.changed = False + + def get_facts(self): + pynxos_facts = self.device.facts + final_facts = {key: value for key, value in pynxos_facts.items() if + key not in ['interfaces', 'uptime_string', 'vlans']} + + if pynxos_facts['interfaces']: + final_facts['interface_list'] = pynxos_facts['interfaces'] + else: + final_facts['interface_list'] = self.get_interfaces().keys() + + final_facts['vendor'] = 'Cisco' + + hostname_cmd = 'show hostname' + hostname = self.device.show(hostname_cmd).get('hostname') + if hostname: + final_facts['fqdn'] = hostname + + return final_facts + + def get_interfaces(self): + interfaces = {} + iface_cmd = 'show interface' + interfaces_out = self.device.show(iface_cmd) + interfaces_body = interfaces_out['TABLE_interface']['ROW_interface'] + + for interface_details in interfaces_body: + interface_name = interface_details.get('interface') + # Earlier version of Nexus returned a list for 'eth_bw' (observed on 7.1(0)N1(1a)) + interface_speed = interface_details.get('eth_bw', 0) + if isinstance(interface_speed, list): + interface_speed = interface_speed[0] + interface_speed = int(interface_speed / 1000) + if 'admin_state' in interface_details: + is_up = interface_details.get('admin_state', '') == 'up' + else: + is_up = interface_details.get('state', '') == 'up' + interfaces[interface_name] = { + 'is_up': is_up, + 'is_enabled': (interface_details.get('state') == 'up'), + 'description': py23_compat.text_type(interface_details.get('desc', '').strip('"')), + 'last_flapped': self._compute_timestamp( + interface_details.get('eth_link_flapped', '')), + 'speed': interface_speed, + 'mac_address': napalm.base.helpers.convert( + napalm.base.helpers.mac, interface_details.get('eth_hw_addr')), + } + return interfaces + + def get_lldp_neighbors(self): + results = {} + try: + command = 'show lldp neighbors' + lldp_raw_output = self.cli([command]).get(command, '') + lldp_neighbors = napalm.base.helpers.textfsm_extractor( + self, 'lldp_neighbors', lldp_raw_output) + except CLIError: + lldp_neighbors = [] + + for neighbor in lldp_neighbors: + local_iface = neighbor.get('local_interface') + if neighbor.get(local_iface) is None: + if local_iface not in results: + results[local_iface] = [] + + neighbor_dict = {} + neighbor_dict['hostname'] = py23_compat.text_type(neighbor.get('neighbor')) + neighbor_dict['port'] = py23_compat.text_type(neighbor.get('neighbor_interface')) + + results[local_iface].append(neighbor_dict) + return results + + def get_bgp_neighbors(self): + results = {} + bgp_state_dict = { + 'Idle': {'is_up': False, 'is_enabled': True}, + 'Active': {'is_up': False, 'is_enabled': True}, + 'Open': {'is_up': False, 'is_enabled': True}, + 'Established': {'is_up': True, 'is_enabled': True}, + 'Closing': {'is_up': True, 'is_enabled': True}, + 'Shutdown': {'is_up': False, 'is_enabled': False}, + } + + try: + cmd = 'show bgp sessions vrf all' + vrf_list = self._get_command_table(cmd, 'TABLE_vrf', 'ROW_vrf') + except CLIError: + vrf_list = [] + + for vrf_dict in vrf_list: + result_vrf_dict = {} + result_vrf_dict['router_id'] = py23_compat.text_type(vrf_dict['router-id']) + result_vrf_dict['peers'] = {} + neighbors_list = vrf_dict.get('TABLE_neighbor', {}).get('ROW_neighbor', []) + + if isinstance(neighbors_list, dict): + neighbors_list = [neighbors_list] + + for neighbor_dict in neighbors_list: + neighborid = napalm.base.helpers.ip(neighbor_dict['neighbor-id']) + remoteas = napalm.base.helpers.as_number(neighbor_dict['remoteas']) + state = py23_compat.text_type(neighbor_dict['state']) + + bgp_state = bgp_state_dict[state] + + result_peer_dict = { + 'local_as': int(vrf_dict['local-as']), + 'remote_as': remoteas, + 'remote_id': neighborid, + 'is_enabled': bgp_state['is_enabled'], + 'uptime': -1, + 'description': '', + 'is_up': bgp_state['is_up'], + } + result_peer_dict['address_family'] = { + 'ipv4': { + 'sent_prefixes': -1, + 'accepted_prefixes': -1, + 'received_prefixes': -1 + } + } + result_vrf_dict['peers'][neighborid] = result_peer_dict + + vrf_name = vrf_dict['vrf-name-out'] + if vrf_name == 'default': + vrf_name = 'global' + results[vrf_name] = result_vrf_dict + return results + + def _set_checkpoint(self, filename): + commands = ['terminal dont-ask', 'checkpoint file {0}'.format(filename)] + self.device.config_list(commands) + + def _get_checkpoint_file(self): + filename = 'temp_cp_file_from_napalm' + self._set_checkpoint(filename) + cp_out = self.device.show('show file {0}'.format(filename), raw_text=True) + self._delete_file(filename) + return cp_out + + def get_lldp_neighbors_detail(self, interface=''): + lldp_neighbors = {} + filter = '' + if interface: + filter = 'interface {name} '.format(name=interface) + + command = 'show lldp neighbors {filter}detail'.format(filter=filter) + # seems that some old devices may not return JSON output... + + try: + lldp_neighbors_table_str = self.cli([command]).get(command) + # thus we need to take the raw text output + lldp_neighbors_list = lldp_neighbors_table_str.splitlines() + except CLIError: + lldp_neighbors_list = [] + + if not lldp_neighbors_list: + return lldp_neighbors # empty dict + + CHASSIS_REGEX = '^(Chassis id:)\s+([a-z0-9\.]+)$' + PORT_REGEX = '^(Port id:)\s+([0-9]+)$' + LOCAL_PORT_ID_REGEX = '^(Local Port id:)\s+(.*)$' + PORT_DESCR_REGEX = '^(Port Description:)\s+(.*)$' + SYSTEM_NAME_REGEX = '^(System Name:)\s+(.*)$' + SYSTEM_DESCR_REGEX = '^(System Description:)\s+(.*)$' + SYST_CAPAB_REEGX = '^(System Capabilities:)\s+(.*)$' + ENABL_CAPAB_REGEX = '^(Enabled Capabilities:)\s+(.*)$' + VLAN_ID_REGEX = '^(Vlan ID:)\s+(.*)$' + + lldp_neighbor = {} + interface_name = None + + for line in lldp_neighbors_list: + chassis_rgx = re.search(CHASSIS_REGEX, line, re.I) + if chassis_rgx: + lldp_neighbor = { + 'remote_chassis_id': napalm.base.helpers.mac(chassis_rgx.groups()[1]) + } + continue + lldp_neighbor['parent_interface'] = '' + port_rgx = re.search(PORT_REGEX, line, re.I) + if port_rgx: + lldp_neighbor['parent_interface'] = py23_compat.text_type(port_rgx.groups()[1]) + continue + local_port_rgx = re.search(LOCAL_PORT_ID_REGEX, line, re.I) + if local_port_rgx: + interface_name = local_port_rgx.groups()[1] + continue + port_descr_rgx = re.search(PORT_DESCR_REGEX, line, re.I) + if port_descr_rgx: + lldp_neighbor['remote_port'] = py23_compat.text_type(port_descr_rgx.groups()[1]) + lldp_neighbor['remote_port_description'] = py23_compat.text_type( + port_descr_rgx.groups()[1]) + continue + syst_name_rgx = re.search(SYSTEM_NAME_REGEX, line, re.I) + if syst_name_rgx: + lldp_neighbor['remote_system_name'] = py23_compat.text_type( + syst_name_rgx.groups()[1]) + continue + syst_descr_rgx = re.search(SYSTEM_DESCR_REGEX, line, re.I) + if syst_descr_rgx: + lldp_neighbor['remote_system_description'] = py23_compat.text_type( + syst_descr_rgx.groups()[1]) + continue + syst_capab_rgx = re.search(SYST_CAPAB_REEGX, line, re.I) + if syst_capab_rgx: + lldp_neighbor['remote_system_capab'] = py23_compat.text_type( + syst_capab_rgx.groups()[1]) + continue + syst_enabled_rgx = re.search(ENABL_CAPAB_REGEX, line, re.I) + if syst_enabled_rgx: + lldp_neighbor['remote_system_enable_capab'] = py23_compat.text_type( + syst_enabled_rgx.groups()[1]) + continue + vlan_rgx = re.search(VLAN_ID_REGEX, line, re.I) + if vlan_rgx: + # at the end of the loop + if interface_name not in lldp_neighbors.keys(): + lldp_neighbors[interface_name] = [] + lldp_neighbors[interface_name].append(lldp_neighbor) + return lldp_neighbors + + def cli(self, commands): + cli_output = {} + if type(commands) is not list: + raise TypeError('Please enter a valid list of commands!') + + for command in commands: + command_output = self.device.show(command, raw_text=True) + cli_output[py23_compat.text_type(command)] = command_output + return cli_output + + def get_arp_table(self): + arp_table = [] + command = 'show ip arp' + arp_table_vrf = self._get_command_table(command, 'TABLE_vrf', 'ROW_vrf') + arp_table_raw = self._get_table_rows(arp_table_vrf[0], 'TABLE_adj', 'ROW_adj') + + for arp_table_entry in arp_table_raw: + raw_ip = arp_table_entry.get('ip-addr-out') + raw_mac = arp_table_entry.get('mac') + age = arp_table_entry.get('time-stamp') + if age == '-': + age_sec = -1.0 + elif ':' not in age: + # Cisco sometimes returns a sub second arp time 0.411797 + try: + age_sec = float(age) + except ValueError: + age_sec = -1.0 + else: + fields = age.split(':') + if len(fields) == 3: + try: + fields = [float(x) for x in fields] + hours, minutes, seconds = fields + age_sec = 3600 * hours + 60 * minutes + seconds + except ValueError: + age_sec = -1.0 + age_sec = round(age_sec, 1) + + interface = py23_compat.text_type(arp_table_entry.get('intf-out')) + arp_table.append({ + 'interface': interface, + 'mac': napalm.base.helpers.convert( + napalm.base.helpers.mac, raw_mac, raw_mac), + 'ip': napalm.base.helpers.ip(raw_ip), + 'age': age_sec + }) + return arp_table + + def _get_ntp_entity(self, peer_type): + ntp_entities = {} + command = 'show ntp peers' + ntp_peers_table = self._get_command_table(command, 'TABLE_peers', 'ROW_peers') + + for ntp_peer in ntp_peers_table: + if ntp_peer.get('serv_peer', '').strip() != peer_type: + continue + peer_addr = napalm.base.helpers.ip(ntp_peer.get('PeerIPAddress').strip()) + ntp_entities[peer_addr] = {} + + return ntp_entities + + def get_ntp_peers(self): + return self._get_ntp_entity('Peer') + + def get_ntp_servers(self): + return self._get_ntp_entity('Server') + + def get_ntp_stats(self): + ntp_stats = [] + command = 'show ntp peer-status' + ntp_stats_table = self._get_command_table(command, 'TABLE_peersstatus', 'ROW_peersstatus') + + for ntp_peer in ntp_stats_table: + peer_address = napalm.base.helpers.ip(ntp_peer.get('remote').strip()) + syncmode = ntp_peer.get('syncmode') + stratum = int(ntp_peer.get('st')) + hostpoll = int(ntp_peer.get('poll')) + reachability = int(ntp_peer.get('reach')) + delay = float(ntp_peer.get('delay')) + ntp_stats.append({ + 'remote': peer_address, + 'synchronized': (syncmode == '*'), + 'referenceid': peer_address, + 'stratum': stratum, + 'type': '', + 'when': '', + 'hostpoll': hostpoll, + 'reachability': reachability, + 'delay': delay, + 'offset': 0.0, + 'jitter': 0.0 + }) + return ntp_stats + + def get_interfaces_ip(self): + interfaces_ip = {} + ipv4_command = 'show ip interface' + ipv4_interf_table_vrf = self._get_command_table(ipv4_command, 'TABLE_intf', 'ROW_intf') + + for interface in ipv4_interf_table_vrf: + interface_name = py23_compat.text_type(interface.get('intf-name', '')) + address = napalm.base.helpers.ip(interface.get('prefix')) + prefix = int(interface.get('masklen', '')) + if interface_name not in interfaces_ip.keys(): + interfaces_ip[interface_name] = {} + if 'ipv4' not in interfaces_ip[interface_name].keys(): + interfaces_ip[interface_name]['ipv4'] = {} + if address not in interfaces_ip[interface_name].get('ipv4'): + interfaces_ip[interface_name]['ipv4'][address] = {} + interfaces_ip[interface_name]['ipv4'][address].update({ + 'prefix_length': prefix + }) + secondary_addresses = interface.get('TABLE_secondary_address', {})\ + .get('ROW_secondary_address', []) + if type(secondary_addresses) is dict: + secondary_addresses = [secondary_addresses] + for secondary_address in secondary_addresses: + secondary_address_ip = napalm.base.helpers.ip(secondary_address.get('prefix1')) + secondary_address_prefix = int(secondary_address.get('masklen1', '')) + if 'ipv4' not in interfaces_ip[interface_name].keys(): + interfaces_ip[interface_name]['ipv4'] = {} + if secondary_address_ip not in interfaces_ip[interface_name].get('ipv4'): + interfaces_ip[interface_name]['ipv4'][secondary_address_ip] = {} + interfaces_ip[interface_name]['ipv4'][secondary_address_ip].update({ + 'prefix_length': secondary_address_prefix + }) + + ipv6_command = 'show ipv6 interface' + ipv6_interf_table_vrf = self._get_command_table(ipv6_command, 'TABLE_intf', 'ROW_intf') + + for interface in ipv6_interf_table_vrf: + interface_name = py23_compat.text_type(interface.get('intf-name', '')) + address = napalm.base.helpers.ip(interface.get('addr', '').split('/')[0]) + prefix = interface.get('prefix', '').split('/')[-1] + if prefix: + prefix = int(interface.get('prefix', '').split('/')[-1]) + else: + prefix = 128 + if interface_name not in interfaces_ip.keys(): + interfaces_ip[interface_name] = {} + if 'ipv6' not in interfaces_ip[interface_name].keys(): + interfaces_ip[interface_name]['ipv6'] = {} + if address not in interfaces_ip[interface_name].get('ipv6'): + interfaces_ip[interface_name]['ipv6'][address] = {} + interfaces_ip[interface_name]['ipv6'][address].update({ + 'prefix_length': prefix + }) + secondary_addresses = interface.get('TABLE_sec_addr', {}).get('ROW_sec_addr', []) + if type(secondary_addresses) is dict: + secondary_addresses = [secondary_addresses] + for secondary_address in secondary_addresses: + sec_prefix = secondary_address.get('sec-prefix', '').split('/') + secondary_address_ip = napalm.base.helpers.ip(sec_prefix[0]) + secondary_address_prefix = int(sec_prefix[-1]) + if 'ipv6' not in interfaces_ip[interface_name].keys(): + interfaces_ip[interface_name]['ipv6'] = {} + if secondary_address_ip not in interfaces_ip[interface_name].get('ipv6'): + interfaces_ip[interface_name]['ipv6'][secondary_address_ip] = {} + interfaces_ip[interface_name]['ipv6'][secondary_address_ip].update({ + 'prefix_length': secondary_address_prefix + }) + return interfaces_ip + + def get_mac_address_table(self): + mac_table = [] + command = 'show mac address-table' + mac_table_raw = self._get_command_table(command, 'TABLE_mac_address', 'ROW_mac_address') + + for mac_entry in mac_table_raw: + raw_mac = mac_entry.get('disp_mac_addr') + interface = py23_compat.text_type(mac_entry.get('disp_port')) + vlan = int(mac_entry.get('disp_vlan')) + active = True + static = (mac_entry.get('disp_is_static') != '0') + moves = 0 + last_move = 0.0 + mac_table.append({ + 'mac': napalm.base.helpers.mac(raw_mac), + 'interface': interface, + 'vlan': vlan, + 'active': active, + 'static': static, + 'moves': moves, + 'last_move': last_move + }) + return mac_table + + def get_snmp_information(self): + snmp_information = {} + snmp_command = 'show running-config' + snmp_raw_output = self.cli([snmp_command]).get(snmp_command, '') + snmp_config = napalm.base.helpers.textfsm_extractor(self, 'snmp_config', snmp_raw_output) + + if not snmp_config: + return snmp_information + + snmp_information = { + 'contact': py23_compat.text_type(''), + 'location': py23_compat.text_type(''), + 'community': {}, + 'chassis_id': py23_compat.text_type('') + } + + for snmp_entry in snmp_config: + contact = py23_compat.text_type(snmp_entry.get('contact', '')) + if contact: + snmp_information['contact'] = contact + location = py23_compat.text_type(snmp_entry.get('location', '')) + if location: + snmp_information['location'] = location + + community_name = py23_compat.text_type(snmp_entry.get('community', '')) + if not community_name: + continue + + if community_name not in snmp_information['community'].keys(): + snmp_information['community'][community_name] = { + 'acl': py23_compat.text_type(snmp_entry.get('acl', '')), + 'mode': py23_compat.text_type(snmp_entry.get('mode', '').lower()) + } + else: + acl = py23_compat.text_type(snmp_entry.get('acl', '')) + if acl: + snmp_information['community'][community_name]['acl'] = acl + mode = py23_compat.text_type(snmp_entry.get('mode', '').lower()) + if mode: + snmp_information['community'][community_name]['mode'] = mode + return snmp_information + + def get_users(self): + _CISCO_TO_CISCO_MAP = { + 'network-admin': 15, + 'network-operator': 5 + } + + _DEFAULT_USER_DICT = { + 'password': '', + 'level': 0, + 'sshkeys': [] + } + + users = {} + command = 'show running-config' + section_username_raw_output = self.cli([command]).get(command, '') + section_username_tabled_output = napalm.base.helpers.textfsm_extractor( + self, 'users', section_username_raw_output) + + for user in section_username_tabled_output: + username = user.get('username', '') + if not username: + continue + if username not in users: + users[username] = _DEFAULT_USER_DICT.copy() + + password = user.get('password', '') + if password: + users[username]['password'] = py23_compat.text_type(password.strip()) + + level = 0 + role = user.get('role', '') + if role.startswith('priv'): + level = int(role.split('-')[-1]) + else: + level = _CISCO_TO_CISCO_MAP.get(role, 0) + if level > users.get(username).get('level'): + # unfortunately on Cisco you can set different priv levels for the same user + # Good news though: the device will consider the highest level + users[username]['level'] = level + + sshkeytype = user.get('sshkeytype', '') + sshkeyvalue = user.get('sshkeyvalue', '') + if sshkeytype and sshkeyvalue: + if sshkeytype not in ['ssh-rsa', 'ssh-dsa']: + continue + users[username]['sshkeys'].append(py23_compat.text_type(sshkeyvalue)) + return users + + def traceroute(self, + destination, + source=c.TRACEROUTE_SOURCE, + ttl=c.TRACEROUTE_TTL, + timeout=c.TRACEROUTE_TIMEOUT, + vrf=c.TRACEROUTE_VRF): + _HOP_ENTRY_PROBE = [ + '\s+', + '(', # beginning of host_name (ip_address) RTT group + '(', # beginning of host_name (ip_address) group only + '([a-zA-Z0-9\.:-]*)', # hostname + '\s+', + '\(?([a-fA-F0-9\.:][^\)]*)\)?' # IP Address between brackets + ')?', # end of host_name (ip_address) group only + # also hostname/ip are optional -- they can or cannot be specified + # if not specified, means the current probe followed the same path as the previous + '\s+', + '(\d+\.\d+)\s+ms', # RTT + '|\*', # OR *, when non responsive hop + ')' # end of host_name (ip_address) RTT group + ] + + _HOP_ENTRY = [ + '\s?', # space before hop index? + '(\d+)', # hop index + ] + + traceroute_result = {} + timeout = 5 # seconds + probes = 3 # 3 probes/jop and this cannot be changed on NXOS! + + version = '' + try: + version = '6' if IPAddress(destination).version == 6 else '' + except AddrFormatError: + return {'error': 'Destination doest not look like a valid IP Address: {}'.format( + destination)} + + source_opt = '' + if source: + source_opt = 'source {source}'.format(source=source) + + command = 'traceroute{version} {destination} {source_opt}'.format( + version=version, + destination=destination, + source_opt=source_opt + ) + + try: + traceroute_raw_output = self.cli([command]).get(command) + except CommandErrorException: + return {'error': 'Cannot execute traceroute on the device: {}'.format(command)} + + hop_regex = ''.join(_HOP_ENTRY + _HOP_ENTRY_PROBE * probes) + traceroute_result['success'] = {} + if traceroute_raw_output: + for line in traceroute_raw_output.splitlines(): + hop_search = re.search(hop_regex, line) + if not hop_search: + continue + hop_details = hop_search.groups() + hop_index = int(hop_details[0]) + previous_probe_host_name = '*' + previous_probe_ip_address = '*' + traceroute_result['success'][hop_index] = {'probes': {}} + for probe_index in range(probes): + host_name = hop_details[3+probe_index*5] + ip_address_raw = hop_details[4+probe_index*5] + ip_address = napalm.base.helpers.convert( + napalm.base.helpers.ip, ip_address_raw, ip_address_raw) + rtt = hop_details[5+probe_index*5] + if rtt: + rtt = float(rtt) + else: + rtt = timeout * 1000.0 + if not host_name: + host_name = previous_probe_host_name + if not ip_address: + ip_address = previous_probe_ip_address + if hop_details[1+probe_index*5] == '*': + host_name = '*' + ip_address = '*' + traceroute_result['success'][hop_index]['probes'][probe_index+1] = { + 'host_name': py23_compat.text_type(host_name), + 'ip_address': py23_compat.text_type(ip_address), + 'rtt': rtt + } + previous_probe_host_name = host_name + previous_probe_ip_address = ip_address + return traceroute_result + + def get_config(self, retrieve='all'): + config = { + 'startup': '', + 'running': '', + 'candidate': '' + } # default values + + if retrieve.lower() in ('running', 'all'): + _cmd = 'show running-config' + config['running'] = py23_compat.text_type(self.cli([_cmd]).get(_cmd)) + if retrieve.lower() in ('startup', 'all'): + _cmd = 'show startup-config' + config['startup'] = py23_compat.text_type(self.cli([_cmd]).get(_cmd)) + return config diff --git a/napalm/nxos/templates/delete_ntp_peers.j2 b/napalm/nxos/templates/delete_ntp_peers.j2 new file mode 100644 index 000000000..85f89c72d --- /dev/null +++ b/napalm/nxos/templates/delete_ntp_peers.j2 @@ -0,0 +1,4 @@ +{% for peer in peers %} +no ntp peer {{peer}} +{% endfor %} +ntp commit diff --git a/napalm/nxos/templates/delete_ntp_servers.j2 b/napalm/nxos/templates/delete_ntp_servers.j2 new file mode 100644 index 000000000..ed15abf16 --- /dev/null +++ b/napalm/nxos/templates/delete_ntp_servers.j2 @@ -0,0 +1,4 @@ +{% for server in servers %} +no ntp server {{server}} +{% endfor %} +ntp commit diff --git a/napalm/nxos/templates/delete_snmp_config.j2 b/napalm/nxos/templates/delete_snmp_config.j2 new file mode 100644 index 000000000..0543dfe37 --- /dev/null +++ b/napalm/nxos/templates/delete_snmp_config.j2 @@ -0,0 +1,14 @@ +{% if (location is defined) and location %} +no snmp-server location "{{location}}" +{% endif %} +{% if (contact is defined) and contact %} +no snmp-server contact "{{contact}}" +{% endif %} +{% if (chassis_id is defined) and chassis_id %} +no snmp-server chassis-id "{{chassis_id}}" +{% endif %} +{% if (community is defined) and community %} +{% for comm_name, comm_details in community.iteritems() %} +no community {{comm_name}} +{% endfor %} +{% endif %} diff --git a/napalm/nxos/templates/delete_users.j2 b/napalm/nxos/templates/delete_users.j2 new file mode 100644 index 000000000..41e0a3724 --- /dev/null +++ b/napalm/nxos/templates/delete_users.j2 @@ -0,0 +1,16 @@ +{%- for user_name, user_details in users.items() %} +{%- if user_details -%} +{%- if user_details.get('sshkeys') %} +{%- for sshkey in user_details.sshkeys %} +no username {{user_name}} sshkey {{ sshkey }} +{%- endfor %} +{%- endif %} +{%- if user_details.get('password') %} +no username {{user_name}} password +{%- endif %} +{%- if user_details.get('level') %} +no username {{user_name}} role priv-{{user_details.level}} +{%- endif %} +{%- endfor %} +{%- else -%} +{%- endif -%} diff --git a/napalm/nxos/templates/set_hostname.j2 b/napalm/nxos/templates/set_hostname.j2 new file mode 100644 index 000000000..5425366e8 --- /dev/null +++ b/napalm/nxos/templates/set_hostname.j2 @@ -0,0 +1 @@ +hostname {{hostname}} diff --git a/napalm/nxos/templates/set_ntp_peers.j2 b/napalm/nxos/templates/set_ntp_peers.j2 new file mode 100644 index 000000000..57b16edee --- /dev/null +++ b/napalm/nxos/templates/set_ntp_peers.j2 @@ -0,0 +1,4 @@ +{% for peer in peers %} +ntp peer {{peer}} +{% endfor %} +ntp commit diff --git a/napalm/nxos/templates/set_ntp_servers.j2 b/napalm/nxos/templates/set_ntp_servers.j2 new file mode 100644 index 000000000..b4758d25a --- /dev/null +++ b/napalm/nxos/templates/set_ntp_servers.j2 @@ -0,0 +1,4 @@ +{% for server in servers %} +ntp server {{server}} +{% endfor %} +ntp commit diff --git a/napalm/nxos/templates/set_users.j2 b/napalm/nxos/templates/set_users.j2 new file mode 100644 index 000000000..c49f78341 --- /dev/null +++ b/napalm/nxos/templates/set_users.j2 @@ -0,0 +1,13 @@ +{%- for user_name, user_details in users.items() %} +{%- if user_details.get('sshkeys') %} +{%- for sshkey in user_details.sshkeys %} +username {{user_name}} sshkey {{ sshkey }} +{%- endfor %} +{%- endif %} +{%- if user_details.get('password') %} +username {{user_name}} password 5 {{user_details.password}} +{%- endif %} +{%- if user_details.get('level') %} +username {{user_name}} role priv-{{user_details.level}} +{%- endif %} +{%- endfor %} diff --git a/napalm/nxos/templates/snmp_config.j2 b/napalm/nxos/templates/snmp_config.j2 new file mode 100644 index 000000000..4e98e561b --- /dev/null +++ b/napalm/nxos/templates/snmp_config.j2 @@ -0,0 +1,22 @@ +{% if (location is defined) and location %} +snmp-server location "{{location}}" +{% endif %} +{% if (contact is defined) and contact %} +snmp-server contact "{{contact}}" +{% endif %} +{% if (chassis_id is defined) and chassis_id %} +snmp-server chassis-id "{{chassis_id}}" +{% endif %} +{% if (community is defined) and community %} +{% for comm_name, comm_details in community.iteritems() %} +{% if (comm_details is defined) and comm_details %} +{% if (comm_details.get('mode') is defined) and comm_details.get('mode') == 'rw' %} +community {{comm_name}} rw +{% else %} +community {{comm_name}} ro +{% endif %} +{% else %} +community {{comm_name}} ro +{% endif %} +{% endfor %} +{% endif %} diff --git a/napalm/nxos/utils/__init__.py b/napalm/nxos/utils/__init__.py new file mode 100644 index 000000000..678164aea --- /dev/null +++ b/napalm/nxos/utils/__init__.py @@ -0,0 +1 @@ +"""napalm.utils package.""" diff --git a/napalm/nxos/utils/textfsm_templates/lldp_neighbors.tpl b/napalm/nxos/utils/textfsm_templates/lldp_neighbors.tpl new file mode 100644 index 000000000..77f55ad2a --- /dev/null +++ b/napalm/nxos/utils/textfsm_templates/lldp_neighbors.tpl @@ -0,0 +1,9 @@ +Value NEIGHBOR (\S+) +Value LOCAL_INTERFACE (\S+) +Value NEIGHBOR_INTERFACE (\S+) + +Start + ^Device.*ID -> LLDP + +LLDP + ^${NEIGHBOR}\s+${LOCAL_INTERFACE}\s+\d+\s+[\w+\s]+\S+\s+${NEIGHBOR_INTERFACE} -> Record diff --git a/napalm/nxos/utils/textfsm_templates/snmp_config.tpl b/napalm/nxos/utils/textfsm_templates/snmp_config.tpl new file mode 100644 index 000000000..aa070fd53 --- /dev/null +++ b/napalm/nxos/utils/textfsm_templates/snmp_config.tpl @@ -0,0 +1,10 @@ +Value Location (.*) +Value Contact (.*) +Value Community (\S+) +Value Mode (network\-admin|network\-operator) +Value ACL (\S+) + +Start + ^snmp-server\slocation\s${Location} -> Record + ^snmp-server\scontact\s${Contact} -> Record + ^snmp-server\scommunity\s${Community}\s((group\s+${Mode}|use\-.+\s+${ACL})) -> Next.Record diff --git a/napalm/nxos/utils/textfsm_templates/users.tpl b/napalm/nxos/utils/textfsm_templates/users.tpl new file mode 100644 index 000000000..141fd5df3 --- /dev/null +++ b/napalm/nxos/utils/textfsm_templates/users.tpl @@ -0,0 +1,13 @@ +Value Username (\w+.*) +Value Password (.*) +Value Role (\w+.*) +Value SSHKeyType (ssh-rsa|ssh-dsa) +Value SSHKeyValue (\w+.*) + + +Start + ^username\s+${Username}\s+password\s+\d+\s+${Password}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+sshkey\s+${SSHKeyType}\s+${SSHKeyValue} -> Record + +EOF diff --git a/napalm/nxos_ssh/__init__.py b/napalm/nxos_ssh/__init__.py new file mode 100644 index 000000000..67cb8a654 --- /dev/null +++ b/napalm/nxos_ssh/__init__.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 Dravetech AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +"""napalm.nxos package.""" + +# Import stdlib +import pkg_resources + +# Import local modules +from napalm.nxos_ssh.nxos_ssh import NXOSSSHDriver + + +try: + __version__ = pkg_resources.get_distribution('napalm-nxos-ssh').version +except pkg_resources.DistributionNotFound: + __version__ = "Not installed" + +__all__ = ('NXOSSSHDriver',) diff --git a/napalm/nxos_ssh/nxos_ssh.py b/napalm/nxos_ssh/nxos_ssh.py new file mode 100644 index 000000000..af6e7084b --- /dev/null +++ b/napalm/nxos_ssh/nxos_ssh.py @@ -0,0 +1,1534 @@ +# -*- coding: utf-8 -*- +# Copyright 2015 Spotify AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +from __future__ import unicode_literals + +# import stdlib +import re +import os +import time +import uuid +import tempfile +from scp import SCPClient +import paramiko +import hashlib +import socket +from datetime import datetime + +# import third party lib +from netaddr import IPAddress +from netaddr.core import AddrFormatError + +from netmiko import ConnectHandler +from netmiko.ssh_exception import NetMikoTimeoutException + +# import NAPALM Base +import napalm.base.helpers +from napalm.base import NetworkDriver +from napalm.base.utils import py23_compat +from napalm.base.exceptions import ConnectionException +from napalm.base.exceptions import MergeConfigException +from napalm.base.exceptions import CommandErrorException +from napalm.base.exceptions import ReplaceConfigException +import napalm.base.constants as c + +# Easier to store these as constants +HOUR_SECONDS = 3600 +DAY_SECONDS = 24 * HOUR_SECONDS +WEEK_SECONDS = 7 * DAY_SECONDS +YEAR_SECONDS = 365 * DAY_SECONDS + +# STD REGEX PATTERNS +IP_ADDR_REGEX = r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}" +IPV4_ADDR_REGEX = IP_ADDR_REGEX +IPV6_ADDR_REGEX_1 = r"::" +IPV6_ADDR_REGEX_2 = r"[0-9a-fA-F:]{1,39}::[0-9a-fA-F:]{1,39}" +IPV6_ADDR_REGEX_3 = r"[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}:" \ + "[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}:[0-9a-fA-F]{1,3}" +# Should validate IPv6 address using an IP address library after matching with this regex +IPV6_ADDR_REGEX = "(?:{}|{}|{})".format(IPV6_ADDR_REGEX_1, IPV6_ADDR_REGEX_2, IPV6_ADDR_REGEX_3) +IPV4_OR_IPV6_REGEX = "(?:{}|{})".format(IPV4_ADDR_REGEX, IPV6_ADDR_REGEX) + +MAC_REGEX = r"[a-fA-F0-9]{4}\.[a-fA-F0-9]{4}\.[a-fA-F0-9]{4}" +VLAN_REGEX = r"\d{1,4}" + +RE_IPADDR = re.compile(r"{}".format(IP_ADDR_REGEX)) +RE_MAC = re.compile(r"{}".format(MAC_REGEX)) + +# Period needed for 32-bit AS Numbers +ASN_REGEX = r"[\d\.]+" + + +def parse_intf_section(interface): + """Parse a single entry from show interfaces output. + + Different cases: + mgmt0 is up + admin state is up + + Ethernet2/1 is up + admin state is up, Dedicated Interface + + Vlan1 is down (Administratively down), line protocol is down, autostate enabled + + Ethernet154/1/48 is up (with no 'admin state') + """ + interface = interface.strip() + re_protocol = r"^(?P\S+?)\s+is\s+(?P.+?)" \ + r",\s+line\s+protocol\s+is\s+(?P\S+).*$" + re_intf_name_state = r"^(?P\S+) is (?P\S+).*" + re_is_enabled_1 = r"^admin state is (?P\S+)$" + re_is_enabled_2 = r"^admin state is (?P\S+), " + re_is_enabled_3 = r"^.* is down.*Administratively down.*$" + re_mac = r"^\s+Hardware.*address:\s+(?P\S+) " + re_speed = r"^\s+MTU .*, BW (?P\S+) (?P\S+), " + re_description = r"^\s+Description:\s+(?P.*)$" + + # Check for 'protocol is ' lines + match = re.search(re_protocol, interface, flags=re.M) + if match: + intf_name = match.group('intf_name') + status = match.group('status') + protocol = match.group('protocol') + + if 'admin' in status.lower(): + is_enabled = False + else: + is_enabled = True + is_up = bool('up' in protocol) + + else: + # More standard is up, next line admin state is lines + match = re.search(re_intf_name_state, interface) + intf_name = match.group('intf_name') + intf_state = match.group('intf_state').strip() + is_up = True if intf_state == 'up' else False + + admin_state_present = re.search("admin state is", interface) + if admin_state_present: + # Parse cases where 'admin state' string exists + for x_pattern in [re_is_enabled_1, re_is_enabled_2]: + match = re.search(x_pattern, interface, flags=re.M) + if match: + is_enabled = match.group('is_enabled').strip() + is_enabled = True if is_enabled == 'up' else False + break + else: + msg = "Error parsing intf, 'admin state' never detected:\n\n{}".format(interface) + raise ValueError(msg) + else: + # No 'admin state' should be 'is up' or 'is down' strings + # If interface is up; it is enabled + is_enabled = True + if not is_up: + match = re.search(re_is_enabled_3, interface, flags=re.M) + if match: + is_enabled = False + + match = re.search(re_mac, interface, flags=re.M) + if match: + mac_address = match.group('mac_address') + mac_address = napalm.base.helpers.mac(mac_address) + else: + mac_address = "" + + match = re.search(re_speed, interface, flags=re.M) + speed = int(match.group('speed')) + speed_unit = match.group('speed_unit') + # This was alway in Kbit (in the data I saw) + if speed_unit != "Kbit": + msg = "Unexpected speed unit in show interfaces parsing:\n\n{}".format(interface) + raise ValueError(msg) + speed = int(round(speed / 1000.0)) + + description = '' + match = re.search(re_description, interface, flags=re.M) + if match: + description = match.group('description') + + return { + intf_name: { + 'description': description, + 'is_enabled': is_enabled, + 'is_up': is_up, + 'last_flapped': -1.0, + 'mac_address': mac_address, + 'speed': speed} + } + + +def convert_hhmmss(hhmmss): + """Convert hh:mm:ss to seconds.""" + fields = hhmmss.split(":") + if len(fields) != 3: + raise ValueError("Received invalid HH:MM:SS data: {}".format(hhmmss)) + fields = [int(x) for x in fields] + hours, minutes, seconds = fields + return (hours * 3600) + (minutes * 60) + seconds + + +def bgp_time_conversion(bgp_uptime): + """Convert string time to seconds. + + Examples + 00:14:23 + 00:13:40 + 00:00:21 + 00:00:13 + 00:00:49 + 1d11h + 1d17h + 1w0d + 8w5d + 1y28w + never + """ + bgp_uptime = bgp_uptime.strip() + uptime_letters = set(['w', 'h', 'd']) + + if 'never' in bgp_uptime: + return -1 + elif ':' in bgp_uptime: + times = bgp_uptime.split(":") + times = [int(x) for x in times] + hours, minutes, seconds = times + return (hours * 3600) + (minutes * 60) + seconds + # Check if any letters 'w', 'h', 'd' are in the time string + elif uptime_letters & set(bgp_uptime): + form1 = r'(\d+)d(\d+)h' # 1d17h + form2 = r'(\d+)w(\d+)d' # 8w5d + form3 = r'(\d+)y(\d+)w' # 1y28w + match = re.search(form1, bgp_uptime) + if match: + days = int(match.group(1)) + hours = int(match.group(2)) + return (days * DAY_SECONDS) + (hours * 3600) + match = re.search(form2, bgp_uptime) + if match: + weeks = int(match.group(1)) + days = int(match.group(2)) + return (weeks * WEEK_SECONDS) + (days * DAY_SECONDS) + match = re.search(form3, bgp_uptime) + if match: + years = int(match.group(1)) + weeks = int(match.group(2)) + return (years * YEAR_SECONDS) + (weeks * WEEK_SECONDS) + raise ValueError("Unexpected value for BGP uptime string: {}".format(bgp_uptime)) + + +def bgp_normalize_table_data(bgp_table): + """The 'show bgp all summary vrf all' table can have entries that wrap multiple lines. + + 2001:db8:4:701::2 + 4 65535 163664 163693 145 0 0 3w2d 3 + 2001:db8:e0:dd::1 + 4 10 327491 327278 145 0 0 3w1d 4 + + Normalize this so the line wrap doesn't exit. + """ + bgp_table = bgp_table.strip() + bgp_multiline_pattern = r"({})\s*\n".format(IPV4_OR_IPV6_REGEX) + # Strip out the newline + return re.sub(bgp_multiline_pattern, r'\1', bgp_table) + + +def bgp_table_parser(bgp_table): + """Generator that parses a line of bgp summary table and returns a dict compatible with NAPALM + + Example line: + 10.2.1.14 4 10 472516 472238 361 0 0 3w1d 9 + """ + bgp_table = bgp_table.strip() + for bgp_entry in bgp_table.splitlines(): + bgp_table_fields = bgp_entry.split() + + try: + if re.search(r'Shut.*Admin', bgp_entry): + (peer_ip, bgp_version, remote_as, msg_rcvd, msg_sent, _, _, _, + uptime, state_1, state_2) = bgp_table_fields + state_pfxrcd = "{} {}".format(state_1, state_2) + else: + (peer_ip, bgp_version, remote_as, msg_rcvd, msg_sent, _, _, _, + uptime, state_pfxrcd) = bgp_table_fields + except ValueError: + raise ValueError("Unexpected entry ({}) in BGP summary table".format(bgp_table_fields)) + + is_enabled = True + try: + received_prefixes = int(state_pfxrcd) + is_up = True + except ValueError: + received_prefixes = -1 + is_up = False + if re.search(r'Shut.*Admin', state_pfxrcd): + is_enabled = False + + if not is_up: + uptime = -1 + if uptime != -1: + uptime = bgp_time_conversion(uptime) + + yield { + peer_ip: { + "is_enabled": is_enabled, + "uptime": uptime, + "remote_as": napalm.base.helpers.as_number(remote_as), + "is_up": is_up, + "description": "", + "received_prefixes": received_prefixes, + } + } + + +def bgp_summary_parser(bgp_summary): + """Parse 'show bgp all summary vrf' output information from NX-OS devices.""" + + bgp_summary_dict = {} + # Check for BGP summary information lines that have no data + if len(bgp_summary.strip().splitlines()) <= 1: + return {} + + allowed_afi = ['ipv4', 'ipv6'] + vrf_regex = r"^BGP summary information for VRF\s+(?P\S+)," + afi_regex = r"^BGP summary information.*address family (?P\S+ Unicast)" + local_router_regex = (r"^BGP router identifier\s+(?P\S+)" + r",\s+local AS number\s+(?P\S+)") + + for pattern in [vrf_regex, afi_regex, local_router_regex]: + match = re.search(pattern, bgp_summary, flags=re.M) + if match: + bgp_summary_dict.update(match.groupdict(1)) + + # Some post regex cleanup and validation + vrf = bgp_summary_dict['vrf'] + if vrf.lower() == 'default': + bgp_summary_dict['vrf'] = 'global' + + afi = bgp_summary_dict['afi'] + afi = afi.split()[0].lower() + if afi not in allowed_afi: + raise ValueError("AFI ({}) is invalid and not supported.".format(afi)) + bgp_summary_dict['afi'] = afi + + local_as = bgp_summary_dict['local_as'] + local_as = napalm.base.helpers.as_number(local_as) + + match = re.search(IPV4_ADDR_REGEX, bgp_summary_dict['router_id']) + if not match: + raise ValueError("BGP router_id ({}) is not valid".format(bgp_summary_dict['router_id'])) + + vrf = bgp_summary_dict['vrf'] + bgp_return_dict = { + vrf: { + "router_id": bgp_summary_dict['router_id'], + "peers": {}, + } + } + + # Extract and process the tabular data + tabular_divider = r"^Neighbor\s+.*PfxRcd$" + tabular_data = re.split(tabular_divider, bgp_summary, flags=re.M) + if len(tabular_data) != 2: + msg = "Unexpected data processing BGP summary information:\n\n{}".format(bgp_summary) + raise ValueError(msg) + tabular_data = tabular_data[1] + bgp_table = bgp_normalize_table_data(tabular_data) + for bgp_entry in bgp_table_parser(bgp_table): + bgp_return_dict[vrf]["peers"].update(bgp_entry) + + bgp_new_dict = {} + for neighbor, bgp_data in bgp_return_dict[vrf]["peers"].items(): + received_prefixes = bgp_data.pop("received_prefixes") + bgp_data["address_family"] = {} + prefixes_dict = {"sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": received_prefixes} + bgp_data["address_family"][afi] = prefixes_dict + bgp_data["local_as"] = local_as + # FIX, hard-coding + bgp_data["remote_id"] = "0.0.0.0" + bgp_new_dict[neighbor] = bgp_data + + bgp_return_dict[vrf]["peers"] = bgp_new_dict + + return bgp_return_dict + + +class NXOSSSHDriver(NetworkDriver): + def __init__(self, hostname, username, password, timeout=60, optional_args=None): + if optional_args is None: + optional_args = {} + self.hostname = hostname + self.username = username + self.password = password + self.timeout = timeout + self.up = False + self.replace = True + self.loaded = False + self.fc = None + self.changed = False + self.replace_file = None + self.merge_candidate = '' + + if optional_args is None: + optional_args = {} + + # Netmiko possible arguments + netmiko_argument_map = { + 'port': None, + 'verbose': False, + 'timeout': self.timeout, + 'global_delay_factor': 1, + 'use_keys': False, + 'key_file': None, + 'ssh_strict': False, + 'system_host_keys': False, + 'alt_host_keys': False, + 'alt_key_file': '', + 'ssh_config_file': None, + 'allow_agent': False + } + + # Build dict of any optional Netmiko args + self.netmiko_optional_args = { + k: optional_args.get(k, v) + for k, v in netmiko_argument_map.items() + } + + self.port = optional_args.get('port', 22) + self.sudo_pwd = optional_args.get('sudo_pwd', self.password) + + def open(self): + try: + self.device = ConnectHandler(device_type='cisco_nxos', + host=self.hostname, + username=self.username, + password=self.password, + **self.netmiko_optional_args) + self.device.enable() + except NetMikoTimeoutException: + raise ConnectionException('Cannot connect to {}'.format(self.hostname)) + + def close(self): + if self.changed: + self._delete_file(self.backup_file) + self.device.disconnect() + self.device = None + + @staticmethod + def parse_uptime(uptime_str): + """ + Extract the uptime string from the given Cisco IOS Device. + Return the uptime in seconds as an integer + """ + # Initialize to zero + (years, weeks, days, hours, minutes) = (0, 0, 0, 0, 0) + + uptime_str = uptime_str.strip() + time_list = uptime_str.split(',') + for element in time_list: + if re.search("year", element): + years = int(element.split()[0]) + elif re.search("week", element): + weeks = int(element.split()[0]) + elif re.search("day", element): + days = int(element.split()[0]) + elif re.search("hour", element): + hours = int(element.split()[0]) + elif re.search("minute", element): + minutes = int(element.split()[0]) + elif re.search("second", element): + seconds = int(element.split()[0]) + + uptime_sec = (years * YEAR_SECONDS) + (weeks * WEEK_SECONDS) + (days * DAY_SECONDS) + \ + (hours * 3600) + (minutes * 60) + seconds + return uptime_sec + + @staticmethod + def fix_checkpoint_string(string, filename): + # used to generate checkpoint-like files + pattern = '''!Command: Checkpoint cmd vdc 1''' + + if '!Command' in string: + return re.sub('!Command.*', pattern.format(filename), string) + else: + return "{0}\n{1}".format(pattern.format(filename), string) + + def is_alive(self): + """Returns a flag with the state of the SSH connection.""" + null = chr(0) + try: + if self.device is None: + return {'is_alive': False} + else: + # Try sending ASCII null byte to maintain the connection alive + self.device.send_command(null) + except (socket.error, EOFError): + # If unable to send, we can tell for sure that the connection is unusable, + # hence return False. + return {'is_alive': False} + return { + 'is_alive': self.device.remote_conn.transport.is_active() + } + + def load_replace_candidate(self, filename=None, config=None): + self._replace_candidate(filename, config) + self.replace = True + self.loaded = True + + def _get_flash_size(self): + command = 'dir {}'.format('bootflash:') + output = self.device.send_command(command) + + match = re.search(r'(\d+) bytes free', output) + bytes_free = match.group(1) + + return int(bytes_free) + + def _enough_space(self, filename): + flash_size = self._get_flash_size() + file_size = os.path.getsize(filename) + if file_size > flash_size: + return False + return True + + def _verify_remote_file_exists(self, dst, file_system='bootflash:'): + command = 'dir {0}/{1}'.format(file_system, dst) + output = self.device.send_command(command) + if 'No such file' in output: + raise ReplaceConfigException('Could not transfer file.') + + def _replace_candidate(self, filename, config): + if not filename: + file_content = self.fix_checkpoint_string(config, self.replace_file) + filename = self._create_tmp_file(config) + else: + if not os.path.isfile(filename): + raise ReplaceConfigException("File {} not found".format(filename)) + + self.replace_file = filename + with open(self.replace_file, 'r+') as f: + file_content = f.read() + file_content = self.fix_checkpoint_string(file_content, self.replace_file) + f.write(file_content) + + if not self._enough_space(self.replace_file): + msg = 'Could not transfer file. Not enough space on device.' + raise ReplaceConfigException(msg) + + self._check_file_exists(self.replace_file) + dest = os.path.basename(self.replace_file) + full_remote_path = 'bootflash:{}'.format(dest) + with paramiko.SSHClient() as ssh: + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + ssh.connect(hostname=self.hostname, username=self.username, password=self.password) + + try: + with SCPClient(ssh.get_transport()) as scp_client: + scp_client.put(self.replace_file, full_remote_path) + except Exception: + time.sleep(10) + file_size = os.path.getsize(filename) + temp_size = self._verify_remote_file_exists(dest) + if int(temp_size) != int(file_size): + msg = ('Could not transfer file. There was an error ' + 'during transfer. Please make sure remote ' + 'permissions are set.') + raise ReplaceConfigException(msg) + self.config_replace = True + if config and os.path.isfile(self.replace_file): + os.remove(self.replace_file) + + def _file_already_exists(self, dst): + dst_hash = self._get_remote_md5(dst) + src_hash = self._get_local_md5(dst) + if src_hash == dst_hash: + return True + return False + + def _check_file_exists(self, cfg_file): + command = 'dir {}'.format(cfg_file) + output = self.device.send_command(command) + if 'No such file' in output: + return False + else: + return self._file_already_exists(cfg_file) + + def _get_remote_md5(self, dst): + command = 'show file {0} md5sum'.format(dst) + return self.device.send_command(command).strip() + + def _get_local_md5(self, dst, blocksize=2**20): + md5 = hashlib.md5() + local_file = open(dst, 'rb') + buf = local_file.read(blocksize) + while buf: + md5.update(buf) + buf = local_file.read(blocksize) + local_file.close() + return md5.hexdigest() + + def load_merge_candidate(self, filename=None, config=None): + self.replace = False + self.loaded = True + + if not filename and not config: + raise MergeConfigException('filename or config param must be provided.') + + self.merge_candidate += '\n' # insert one extra line + if filename is not None: + with open(filename, "r") as f: + self.merge_candidate += f.read() + else: + self.merge_candidate += config + + @staticmethod + def _create_tmp_file(config): + tmp_dir = tempfile.gettempdir() + rand_fname = py23_compat.text_type(uuid.uuid4()) + filename = os.path.join(tmp_dir, rand_fname) + with open(filename, 'wt') as fobj: + fobj.write(config) + return filename + + def _create_sot_file(self): + """Create Source of Truth file to compare.""" + commands = ['terminal dont-ask', 'checkpoint file sot_file'] + self._send_config_commands(commands) + + def _get_diff(self): + """Get a diff between running config and a proposed file.""" + diff = [] + self._create_sot_file() + command = ('show diff rollback-patch file {0} file {1}'.format( + 'sot_file', self.replace_file.split('/')[-1])) + diff_out = self.device.send_command(command) + try: + diff_out = diff_out.split( + '#Generating Rollback Patch')[1].replace( + 'Rollback Patch is Empty', '').strip() + for line in diff_out.splitlines(): + if line: + if line[0].strip() != '!' and line[0].strip() != '.': + diff.append(line.rstrip(' ')) + except (AttributeError, KeyError): + raise ReplaceConfigException( + 'Could not calculate diff. It\'s possible the given file doesn\'t exist.') + return '\n'.join(diff) + + def _get_merge_diff(self): + diff = [] + running_config = self.get_config(retrieve='running')['running'] + running_lines = running_config.splitlines() + for line in self.merge_candidate.splitlines(): + if line not in running_lines and line: + if line[0].strip() != '!': + diff.append(line) + return '\n'.join(diff) + # the merge diff is not necessarily what needs to be loaded + # for example under NTP, as the `ntp commit` command might be + # alread configured, it is mandatory to be sent + # otherwise it won't take the new configuration - see #59 + # https://github.com/napalm-automation/napalm-nxos/issues/59 + # therefore this method will return the real diff + # but the merge_candidate will remain unchanged + # previously: self.merge_candidate = '\n'.join(diff) + + def compare_config(self): + if self.loaded: + if not self.replace: + return self._get_merge_diff() + # return self.merge_candidate + diff = self._get_diff() + return diff + return '' + + def _save(self, filename='startup-config'): + command = 'copy run %s' % filename + output = self.device.send_command(command) + if 'complete' in output.lower(): + return True + return False + + def _commit_merge(self): + commands = [command for command in self.merge_candidate.splitlines() if command] + output = self.device.send_config_set(commands) + if 'Invalid command' in output: + raise MergeConfigException('Error while applying config!') + if not self._save(): + raise CommandErrorException('Unable to save running-config to startup!') + + def _save_to_checkpoint(self, filename): + """Save the current running config to the given file.""" + command = 'checkpoint file {}'.format(filename) + self.device.send_command(command) + + def _disable_confirmation(self): + self._send_config_commands(['terminal dont-ask']) + + def _load_cfg_from_checkpoint(self): + command = 'rollback running file {0}'.format(self.replace_file.split('/')[-1]) + self._disable_confirmation() + rollback_result = self.device.send_command(command) + if 'Rollback failed.' in rollback_result or 'ERROR' in rollback_result: + raise ReplaceConfigException(rollback_result) + elif rollback_result == []: + return False + return True + + def commit_config(self): + if self.loaded: + self.backup_file = 'config_' + str(datetime.now()).replace(' ', '_') + # Create Checkpoint from current running-config + self._save_to_checkpoint(self.backup_file) + if self.replace: + cfg_replace_status = self._load_cfg_from_checkpoint() + if not cfg_replace_status: + raise ReplaceConfigException + else: + try: + self._commit_merge() + self.merge_candidate = '' # clear the merge buffer + except Exception as e: + raise MergeConfigException(str(e)) + self.changed = True + self.loaded = False + else: + raise ReplaceConfigException('No config loaded.') + + def _delete_file(self, filename): + commands = [ + 'terminal dont-ask', + 'delete {}'.format(filename), + 'no terminal dont-ask' + ] + for command in commands: + self.device.send_command(command) + + def discard_config(self): + if self.loaded: + self.merge_candidate = '' # clear the buffer + if self.loaded and self.replace: + self._delete_file(self.replace_file) + self.loaded = False + + def rollback(self): + if self.changed: + command = 'rollback running-config file {}'.format(self.backup_file) + result = self.device.send_command(command) + if 'completed' not in result.lower(): + raise ReplaceConfigException(result) + if not self._save(): + raise CommandErrorException('Unable to save running-config to startup!') + self.changed = False + + def _apply_key_map(self, key_map, table): + new_dict = {} + for key, value in table.items(): + new_key = key_map.get(key) + if new_key: + new_dict[new_key] = str(value) + return new_dict + + def _convert_uptime_to_seconds(self, uptime_facts): + seconds = int(uptime_facts['up_days']) * 24 * 60 * 60 + seconds += int(uptime_facts['up_hours']) * 60 * 60 + seconds += int(uptime_facts['up_mins']) * 60 + seconds += int(uptime_facts['up_secs']) + return seconds + + def get_facts(self): + """Return a set of facts from the devices.""" + # default values. + vendor = u'Cisco' + uptime = -1 + serial_number, fqdn, os_version, hostname, domain_name = ('',) * 5 + + # obtain output from device + show_ver = self.device.send_command('show version') + show_hosts = self.device.send_command('show hosts') + show_int_status = self.device.send_command('show interface status') + show_hostname = self.device.send_command('show hostname') + + # uptime/serial_number/IOS version + for line in show_ver.splitlines(): + if ' uptime is ' in line: + _, uptime_str = line.split(' uptime is ') + uptime = self.parse_uptime(uptime_str) + + if 'Processor Board ID' in line: + _, serial_number = line.split("Processor Board ID ") + serial_number = serial_number.strip() + + if 'system: ' in line: + line = line.strip() + os_version = line.split()[2] + os_version = os_version.strip() + + if 'cisco' in line and 'Chassis' in line: + _, model = line.split()[:2] + model = model.strip() + + hostname = show_hostname.strip() + + # Determine domain_name and fqdn + for line in show_hosts.splitlines(): + if 'Default domain' in line: + _, domain_name = re.split(r".*Default domain.*is ", line) + domain_name = domain_name.strip() + break + if hostname.count(".") >= 2: + fqdn = hostname + elif domain_name: + fqdn = '{}.{}'.format(hostname, domain_name) + + # interface_list filter + interface_list = [] + show_int_status = show_int_status.strip() + for line in show_int_status.splitlines(): + if line.startswith(' ') or line.startswith('-') or line.startswith('Port '): + continue + interface = line.split()[0] + interface_list.append(interface) + + return { + 'uptime': int(uptime), + 'vendor': vendor, + 'os_version': py23_compat.text_type(os_version), + 'serial_number': py23_compat.text_type(serial_number), + 'model': py23_compat.text_type(model), + 'hostname': py23_compat.text_type(hostname), + 'fqdn': fqdn, + 'interface_list': interface_list + } + + def get_interfaces(self): + """ + Get interface details. + + last_flapped is not implemented + + Example Output: + + { u'Vlan1': { 'description': u'', + 'is_enabled': True, + 'is_up': True, + 'last_flapped': -1.0, + 'mac_address': u'a493.4cc1.67a7', + 'speed': 100}, + u'Vlan100': { 'description': u'Data Network', + 'is_enabled': True, + 'is_up': True, + 'last_flapped': -1.0, + 'mac_address': u'a493.4cc1.67a7', + 'speed': 100}, + u'Vlan200': { 'description': u'Voice Network', + 'is_enabled': True, + 'is_up': True, + 'last_flapped': -1.0, + 'mac_address': u'a493.4cc1.67a7', + 'speed': 100}} + """ + interfaces = {} + command = 'show interface' + output = self.device.send_command(command) + if not output: + return {} + + # Break output into per-interface sections (note, separator text is retained) + separator1 = r"^\S+\s+is \S+.*\nadmin state is.*$" + separator2 = r"^.* is .*, line protocol is .*$" + separator3 = r"^.* is (?:down|up).*$" + separators = r"({}|{}|{})".format(separator1, separator2, separator3) + interface_lines = re.split(separators, output, flags=re.M) + + if len(interface_lines) == 1: + msg = "Unexpected output data in '{}':\n\n{}".format(command, interface_lines) + raise ValueError(msg) + + # Get rid of the blank data at the beginning + interface_lines.pop(0) + + # Must be pairs of data (the separator and section corresponding to it) + if len(interface_lines) % 2 != 0: + msg = "Unexpected output data in '{}':\n\n{}".format(command, interface_lines) + raise ValueError(msg) + + # Combine the separator and section into one string + intf_iter = iter(interface_lines) + try: + new_interfaces = [line + next(intf_iter, '') for line in intf_iter] + except TypeError: + raise ValueError() + + for entry in new_interfaces: + interfaces.update(parse_intf_section(entry)) + + return interfaces + + def get_lldp_neighbors(self): + results = {} + command = 'show lldp neighbors' + output = self.device.send_command(command) + lldp_neighbors = napalm.base.helpers.textfsm_extractor( + self, 'lldp_neighbors', output) + + for neighbor in lldp_neighbors: + local_iface = neighbor.get('local_interface') + if neighbor.get(local_iface) is None: + if local_iface not in results: + results[local_iface] = [] + + neighbor_dict = {} + neighbor_dict['hostname'] = py23_compat.text_type(neighbor.get('neighbor')) + neighbor_dict['port'] = py23_compat.text_type(neighbor.get('neighbor_interface')) + + results[local_iface].append(neighbor_dict) + return results + + def get_bgp_neighbors(self): + """BGP neighbor information. + + Supports VRFs and IPv4 and IPv6 AFIs + + { + "global": { + "router_id": "1.1.1.103", + "peers": { + "10.99.99.2": { + "is_enabled": true, + "uptime": -1, + "remote_as": 22, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + }, + "remote_id": "0.0.0.0", + "local_as": 22, + "is_up": false, + "description": "" + } + } + } + """ + bgp_dict = {} + + # get summary output from device + cmd_bgp_all_sum = 'show bgp all summary vrf all' + bgp_summary_output = self.device.send_command(cmd_bgp_all_sum).strip() + + section_separator = r"BGP summary information for " + bgp_summary_sections = re.split(section_separator, bgp_summary_output) + if len(bgp_summary_sections): + bgp_summary_sections.pop(0) + + for bgp_section in bgp_summary_sections: + bgp_section = section_separator + bgp_section + bgp_dict.update(bgp_summary_parser(bgp_section)) + + # FIX -- look up logical or behavior we did in Cisco IOS bgp parser (make consistent here) + # FIX -- need to merge IPv6 and IPv4 AFI for same neighbor + return bgp_dict + + def _send_config_commands(self, commands): + for command in commands: + self.device.send_command(command) + + def _set_checkpoint(self, filename): + commands = ['terminal dont-ask', 'checkpoint file {0}'.format(filename)] + self._send_config_commands(commands) + + def _get_checkpoint_file(self): + filename = 'temp_cp_file_from_napalm' + self._set_checkpoint(filename) + command = 'show file {0}'.format(filename) + output = self.device.send_command(command) + self._delete_file(filename) + return output + + def get_lldp_neighbors_detail(self, interface=''): + lldp_neighbors = {} + filter = '' + if interface: + filter = 'interface {name} '.format(name=interface) + + command = 'show lldp neighbors {filter}detail'.format(filter=filter) + # seems that some old devices may not return JSON output... + + output = self.device.send_command(command) + # thus we need to take the raw text output + lldp_neighbors_list = output.splitlines() + + if not lldp_neighbors_list: + return lldp_neighbors # empty dict + + CHASSIS_REGEX = '^(Chassis id:)\s+([a-z0-9\.]+)$' + PORT_REGEX = '^(Port id:)\s+([0-9]+)$' + LOCAL_PORT_ID_REGEX = '^(Local Port id:)\s+(.*)$' + PORT_DESCR_REGEX = '^(Port Description:)\s+(.*)$' + SYSTEM_NAME_REGEX = '^(System Name:)\s+(.*)$' + SYSTEM_DESCR_REGEX = '^(System Description:)\s+(.*)$' + SYST_CAPAB_REEGX = '^(System Capabilities:)\s+(.*)$' + ENABL_CAPAB_REGEX = '^(Enabled Capabilities:)\s+(.*)$' + VLAN_ID_REGEX = '^(Vlan ID:)\s+(.*)$' + + lldp_neighbor = {} + interface_name = None + + for line in lldp_neighbors_list: + chassis_rgx = re.search(CHASSIS_REGEX, line, re.I) + if chassis_rgx: + lldp_neighbor = { + 'remote_chassis_id': napalm.base.helpers.mac(chassis_rgx.groups()[1]) + } + continue + lldp_neighbor['parent_interface'] = '' + port_rgx = re.search(PORT_REGEX, line, re.I) + if port_rgx: + lldp_neighbor['parent_interface'] = py23_compat.text_type(port_rgx.groups()[1]) + continue + local_port_rgx = re.search(LOCAL_PORT_ID_REGEX, line, re.I) + if local_port_rgx: + interface_name = local_port_rgx.groups()[1] + continue + port_descr_rgx = re.search(PORT_DESCR_REGEX, line, re.I) + if port_descr_rgx: + lldp_neighbor['remote_port'] = py23_compat.text_type(port_descr_rgx.groups()[1]) + lldp_neighbor['remote_port_description'] = py23_compat.text_type( + port_descr_rgx.groups()[1]) + continue + syst_name_rgx = re.search(SYSTEM_NAME_REGEX, line, re.I) + if syst_name_rgx: + lldp_neighbor['remote_system_name'] = py23_compat.text_type( + syst_name_rgx.groups()[1]) + continue + syst_descr_rgx = re.search(SYSTEM_DESCR_REGEX, line, re.I) + if syst_descr_rgx: + lldp_neighbor['remote_system_description'] = py23_compat.text_type( + syst_descr_rgx.groups()[1]) + continue + syst_capab_rgx = re.search(SYST_CAPAB_REEGX, line, re.I) + if syst_capab_rgx: + lldp_neighbor['remote_system_capab'] = py23_compat.text_type( + syst_capab_rgx.groups()[1]) + continue + syst_enabled_rgx = re.search(ENABL_CAPAB_REGEX, line, re.I) + if syst_enabled_rgx: + lldp_neighbor['remote_system_enable_capab'] = py23_compat.text_type( + syst_enabled_rgx.groups()[1]) + continue + vlan_rgx = re.search(VLAN_ID_REGEX, line, re.I) + if vlan_rgx: + # at the end of the loop + if interface_name not in lldp_neighbors.keys(): + lldp_neighbors[interface_name] = [] + lldp_neighbors[interface_name].append(lldp_neighbor) + return lldp_neighbors + + def cli(self, commands): + cli_output = {} + if type(commands) is not list: + raise TypeError('Please enter a valid list of commands!') + + for command in commands: + output = self.device.send_command(command) + cli_output[py23_compat.text_type(command)] = output + return cli_output + + def get_arp_table(self): + """ + Get arp table information. + + Return a list of dictionaries having the following set of keys: + * interface (string) + * mac (string) + * ip (string) + * age (float) + + For example:: + [ + { + 'interface' : 'MgmtEth0/RSP0/CPU0/0', + 'mac' : '5c:5e:ab:da:3c:f0', + 'ip' : '172.17.17.1', + 'age' : 12.0 + }, + { + 'interface': 'MgmtEth0/RSP0/CPU0/0', + 'mac' : '66:0e:94:96:e0:ff', + 'ip' : '172.17.17.2', + 'age' : 14.0 + } + ] + """ + arp_table = [] + + command = 'show ip arp vrf default | exc INCOMPLETE' + output = self.device.send_command(command) + + separator = r"^Address\s+Age.*Interface.*$" + arp_list = re.split(separator, output, flags=re.M) + if len(arp_list) != 2: + raise ValueError("Error processing arp table output:\n\n{}".format(output)) + + arp_entries = arp_list[1].strip() + for line in arp_entries.splitlines(): + if len(line.split()) == 4: + address, age, mac, interface = line.split() + else: + raise ValueError("Unexpected output from: {}".format(line.split())) + + if age == '-': + age = -1.0 + elif ':' not in age: + # Cisco sometimes returns a sub second arp time 0.411797 + try: + age = float(age) + except ValueError: + age = -1.0 + else: + age = convert_hhmmss(age) + age = float(age) + age = round(age, 1) + + # Validate we matched correctly + if not re.search(RE_IPADDR, address): + raise ValueError("Invalid IP Address detected: {}".format(address)) + if not re.search(RE_MAC, mac): + raise ValueError("Invalid MAC Address detected: {}".format(mac)) + entry = { + 'interface': interface, + 'mac': napalm.base.helpers.mac(mac), + 'ip': address, + 'age': age + } + arp_table.append(entry) + return arp_table + + def _get_ntp_entity(self, peer_type): + ntp_entities = {} + command = 'show ntp peers' + output = self.device.send_command(command) + + for line in output.splitlines(): + # Skip first two lines and last line of command output + if line == "" or '-----' in line or 'Peer IP Address' in line: + continue + elif IPAddress(len(line.split()[0])).is_unicast: + peer_addr = line.split()[0] + ntp_entities[peer_addr] = {} + else: + raise ValueError("Did not correctly find a Peer IP Address") + + return ntp_entities + + def get_ntp_peers(self): + return self._get_ntp_entity('Peer') + + def get_ntp_servers(self): + return self._get_ntp_entity('Server') + + def __get_ntp_stats(self): + ntp_stats = [] + command = 'show ntp peer-status' + output = self.device.send_command(command) # noqa + return ntp_stats + + def get_interfaces_ip(self): + """ + Get interface IP details. Returns a dictionary of dictionaries. + + Sample output: + { + "Ethernet2/3": { + "ipv4": { + "4.4.4.4": { + "prefix_length": 16 + } + }, + "ipv6": { + "2001:db8::1": { + "prefix_length": 10 + }, + "fe80::2ec2:60ff:fe4f:feb2": { + "prefix_length": "128" + } + } + }, + "Ethernet2/2": { + "ipv4": { + "2.2.2.2": { + "prefix_length": 27 + } + } + } + } + """ + interfaces_ip = {} + ipv4_command = 'show ip interface vrf default' + ipv6_command = 'show ipv6 interface vrf default' + output_v4 = self.device.send_command(ipv4_command) + output_v6 = self.device.send_command(ipv6_command) + + v4_interfaces = {} + for line in output_v4.splitlines(): + # Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 38, + # IP address: 2.2.2.2, IP subnet: 2.2.2.0/27 route-preference: 0, tag: 0 + # IP address: 3.3.3.3, IP subnet: 3.3.3.0/25 secondary route-preference: 0, tag: 0 + if 'Interface status' in line: + interface = line.split(',')[0] + continue + if 'IP address' in line: + ip_address = line.split(',')[0].split()[2] + try: + prefix_len = int(line.split()[5].split('/')[1]) + except ValueError: + prefix_len = 'N/A' + val = {'prefix_length': prefix_len} + v4_interfaces.setdefault(interface, {})[ip_address] = val + + v6_interfaces = {} + for line in output_v6.splitlines(): + # Ethernet2/4, Interface status: protocol-up/link-up/admin-up, iod: 40 + # IPv6 address: + # 2001:11:2233::a1/24 [VALID] + # 2001:cc11:22bb:0:2ec2:60ff:fe4f:feb2/64 [VALID] + # IPv6 subnet: 2001::/24 + # IPv6 link-local address: fe80::2ec2:60ff:fe4f:feb2 (default) [VALID] + if 'Interface status' in line: + interface = line.split(',')[0] + continue + if 'VALID' in line: + line = line.strip() + if 'link-local address' in line: + ip_address = line.split()[3] + prefix_len = '64' + else: + ip_address, prefix_len = line.split()[0].split('/') + prefix_len = int(prefix_len) + val = {'prefix_length': prefix_len} + v6_interfaces.setdefault(interface, {})[ip_address] = val + + # Join data from intermediate dictionaries. + for interface, data in v4_interfaces.items(): + interfaces_ip.setdefault(interface, {'ipv4': {}})['ipv4'] = data + + for interface, data in v6_interfaces.items(): + interfaces_ip.setdefault(interface, {'ipv6': {}})['ipv6'] = data + + return interfaces_ip + + def get_mac_address_table(self): + """ + Returns a lists of dictionaries. Each dictionary represents an entry in the MAC Address + Table, having the following keys + * mac (string) + * interface (string) + * vlan (int) + * active (boolean) + * static (boolean) + * moves (int) + * last_move (float) + Format1: + + Legend: + * - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC + age - seconds since last seen,+ - primary entry using vPC Peer-Link, + (T) - True, (F) - False + VLAN MAC Address Type age Secure NTFY Ports/SWID.SSID.LID + ---------+-----------------+--------+---------+------+----+------------------ + * 27 0026.f064.0000 dynamic - F F po1 + * 27 001b.54c2.2644 dynamic - F F po1 + * 27 0000.0c9f.f2bc dynamic - F F po1 + * 27 0026.980a.df44 dynamic - F F po1 + * 16 0050.56bb.0164 dynamic - F F po2 + * 13 90e2.ba5a.9f30 dynamic - F F eth1/2 + * 13 90e2.ba4b.fc78 dynamic - F F eth1/1 + """ + + # The '*' is stripped out later + RE_MACTABLE_FORMAT1 = r"^\s+{}\s+{}\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+".format(VLAN_REGEX, + MAC_REGEX) + RE_MACTABLE_FORMAT2 = r"^\s+{}\s+{}\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+".format('-', + MAC_REGEX) + + mac_address_table = [] + command = 'show mac address-table' + output = self.device.send_command(command) # noqa + + def remove_prefix(s, prefix): + return s[len(prefix):] if s.startswith(prefix) else s + + def process_mac_fields(vlan, mac, mac_type, interface): + """Return proper data for mac address fields.""" + if mac_type.lower() in ['self', 'static', 'system']: + static = True + if vlan.lower() == 'all': + vlan = 0 + elif vlan == '-': + vlan = 0 + if interface.lower() == 'cpu' or re.search(r'router', interface.lower()) or \ + re.search(r'switch', interface.lower()): + interface = '' + else: + static = False + if mac_type.lower() in ['dynamic']: + active = True + else: + active = False + return { + 'mac': napalm.base.helpers.mac(mac), + 'interface': interface, + 'vlan': int(vlan), + 'static': static, + 'active': active, + 'moves': -1, + 'last_move': -1.0 + } + + # Skip the header lines + output = re.split(r'^----.*', output, flags=re.M)[1:] + output = "\n".join(output).strip() + # Strip any leading astericks or G character + output = re.sub(r"^[\*G]", "", output, flags=re.M) + + for line in output.splitlines(): + + # Every 500 Mac's Legend is reprinted, regardless of term len. + # Above split will not help in this scenario + if re.search('^Legend', line): + continue + elif re.search('^\s+\* \- primary entry', line): + continue + elif re.search('^\s+age \-', line): + continue + elif re.search('^\s+VLAN', line): + continue + elif re.search('^------', line): + continue + elif re.search('^\s*$', line): + continue + + for pattern in [RE_MACTABLE_FORMAT1, RE_MACTABLE_FORMAT2]: + if re.search(pattern, line): + if len(line.split()) == 7: + vlan, mac, mac_type, _, _, _, interface = line.split() + mac_address_table.append(process_mac_fields(vlan, mac, mac_type, interface)) + break + else: + raise ValueError("Unexpected output from: {}".format(repr(line))) + + return mac_address_table + + def get_snmp_information(self): + snmp_information = {} + command = 'show running-config' + output = self.device.send_command(command) + snmp_config = napalm.base.helpers.textfsm_extractor(self, 'snmp_config', output) + + if not snmp_config: + return snmp_information + + snmp_information = { + 'contact': py23_compat.text_type(''), + 'location': py23_compat.text_type(''), + 'community': {}, + 'chassis_id': py23_compat.text_type('') + } + + for snmp_entry in snmp_config: + contact = py23_compat.text_type(snmp_entry.get('contact', '')) + if contact: + snmp_information['contact'] = contact + location = py23_compat.text_type(snmp_entry.get('location', '')) + if location: + snmp_information['location'] = location + + community_name = py23_compat.text_type(snmp_entry.get('community', '')) + if not community_name: + continue + + if community_name not in snmp_information['community'].keys(): + snmp_information['community'][community_name] = { + 'acl': py23_compat.text_type(snmp_entry.get('acl', '')), + 'mode': py23_compat.text_type(snmp_entry.get('mode', '').lower()) + } + else: + acl = py23_compat.text_type(snmp_entry.get('acl', '')) + if acl: + snmp_information['community'][community_name]['acl'] = acl + mode = py23_compat.text_type(snmp_entry.get('mode', '').lower()) + if mode: + snmp_information['community'][community_name]['mode'] = mode + return snmp_information + + def get_users(self): + _CISCO_TO_CISCO_MAP = { + 'network-admin': 15, + 'network-operator': 5 + } + + _DEFAULT_USER_DICT = { + 'password': '', + 'level': 0, + 'sshkeys': [] + } + + users = {} + command = 'show running-config' + output = self.device.send_command(command) + section_username_tabled_output = napalm.base.helpers.textfsm_extractor( + self, 'users', output) + + for user in section_username_tabled_output: + username = user.get('username', '') + if not username: + continue + if username not in users: + users[username] = _DEFAULT_USER_DICT.copy() + + password = user.get('password', '') + if password: + users[username]['password'] = py23_compat.text_type(password.strip()) + + level = 0 + role = user.get('role', '') + if role.startswith('priv'): + level = int(role.split('-')[-1]) + else: + level = _CISCO_TO_CISCO_MAP.get(role, 0) + if level > users.get(username).get('level'): + # unfortunately on Cisco you can set different priv levels for the same user + # Good news though: the device will consider the highest level + users[username]['level'] = level + + sshkeytype = user.get('sshkeytype', '') + sshkeyvalue = user.get('sshkeyvalue', '') + if sshkeytype and sshkeyvalue: + if sshkeytype not in ['ssh-rsa', 'ssh-dsa']: + continue + users[username]['sshkeys'].append(py23_compat.text_type(sshkeyvalue)) + return users + + def traceroute(self, + destination, + source=c.TRACEROUTE_SOURCE, + ttl=c.TRACEROUTE_TTL, + timeout=c.TRACEROUTE_TIMEOUT, + vrf=c.TRACEROUTE_VRF): + + _HOP_ENTRY_PROBE = [ + '\s+', + '(', # beginning of host_name (ip_address) RTT group + '(', # beginning of host_name (ip_address) group only + '([a-zA-Z0-9\.:-]*)', # hostname + '\s+', + '\(?([a-fA-F0-9\.:][^\)]*)\)?' # IP Address between brackets + ')?', # end of host_name (ip_address) group only + # also hostname/ip are optional -- they can or cannot be specified + # if not specified, means the current probe followed the same path as the previous + '\s+', + '(\d+\.\d+)\s+ms', # RTT + '|\*', # OR *, when non responsive hop + ')' # end of host_name (ip_address) RTT group + ] + + _HOP_ENTRY = [ + '\s?', # space before hop index? + '(\d+)', # hop index + ] + + traceroute_result = {} + timeout = 5 # seconds + probes = 3 # 3 probes/jop and this cannot be changed on NXOS! + + version = '' + try: + version = '6' if IPAddress(destination).version == 6 else '' + except AddrFormatError: + # Allow use of DNS names + pass + + if source: + source_opt = 'source {source}'.format(source=source) + command = 'traceroute{version} {destination} {source_opt}'.format( + version=version, + destination=destination, + source_opt=source_opt) + else: + command = 'traceroute{version} {destination}'.format( + version=version, + destination=destination) + + try: + traceroute_raw_output = self.device.send_command(command) + except CommandErrorException: + return {'error': 'Cannot execute traceroute on the device: {}'.format(command)} + + hop_regex = ''.join(_HOP_ENTRY + _HOP_ENTRY_PROBE * probes) + traceroute_result['success'] = {} + if traceroute_raw_output: + for line in traceroute_raw_output.splitlines(): + hop_search = re.search(hop_regex, line) + if not hop_search: + continue + hop_details = hop_search.groups() + hop_index = int(hop_details[0]) + previous_probe_host_name = '*' + previous_probe_ip_address = '*' + traceroute_result['success'][hop_index] = {'probes': {}} + for probe_index in range(probes): + host_name = hop_details[3+probe_index*5] + ip_address_raw = hop_details[4+probe_index*5] + ip_address = napalm.base.helpers.convert( + napalm.base.helpers.ip, ip_address_raw, ip_address_raw) + rtt = hop_details[5+probe_index*5] + if rtt: + rtt = float(rtt) + else: + rtt = timeout * 1000.0 + if not host_name: + host_name = previous_probe_host_name + if not ip_address: + ip_address = previous_probe_ip_address + if hop_details[1+probe_index*5] == '*': + host_name = '*' + ip_address = '*' + traceroute_result['success'][hop_index]['probes'][probe_index+1] = { + 'host_name': py23_compat.text_type(host_name), + 'ip_address': py23_compat.text_type(ip_address), + 'rtt': rtt + } + previous_probe_host_name = host_name + previous_probe_ip_address = ip_address + return traceroute_result + + def get_config(self, retrieve='all'): + config = { + 'startup': '', + 'running': '', + 'candidate': '' + } # default values + + if retrieve.lower() in ('running', 'all'): + command = 'show running-config' + config['running'] = py23_compat.text_type(self.device.send_command(command)) + if retrieve.lower() in ('startup', 'all'): + command = 'show startup-config' + config['startup'] = py23_compat.text_type(self.device.send_command(command)) + return config diff --git a/napalm/nxos_ssh/templates/delete_ntp_peers.j2 b/napalm/nxos_ssh/templates/delete_ntp_peers.j2 new file mode 100644 index 000000000..85f89c72d --- /dev/null +++ b/napalm/nxos_ssh/templates/delete_ntp_peers.j2 @@ -0,0 +1,4 @@ +{% for peer in peers %} +no ntp peer {{peer}} +{% endfor %} +ntp commit diff --git a/napalm/nxos_ssh/templates/delete_ntp_servers.j2 b/napalm/nxos_ssh/templates/delete_ntp_servers.j2 new file mode 100644 index 000000000..ed15abf16 --- /dev/null +++ b/napalm/nxos_ssh/templates/delete_ntp_servers.j2 @@ -0,0 +1,4 @@ +{% for server in servers %} +no ntp server {{server}} +{% endfor %} +ntp commit diff --git a/napalm/nxos_ssh/templates/delete_snmp_config.j2 b/napalm/nxos_ssh/templates/delete_snmp_config.j2 new file mode 100644 index 000000000..0543dfe37 --- /dev/null +++ b/napalm/nxos_ssh/templates/delete_snmp_config.j2 @@ -0,0 +1,14 @@ +{% if (location is defined) and location %} +no snmp-server location "{{location}}" +{% endif %} +{% if (contact is defined) and contact %} +no snmp-server contact "{{contact}}" +{% endif %} +{% if (chassis_id is defined) and chassis_id %} +no snmp-server chassis-id "{{chassis_id}}" +{% endif %} +{% if (community is defined) and community %} +{% for comm_name, comm_details in community.iteritems() %} +no community {{comm_name}} +{% endfor %} +{% endif %} diff --git a/napalm/nxos_ssh/templates/delete_users.j2 b/napalm/nxos_ssh/templates/delete_users.j2 new file mode 100644 index 000000000..41e0a3724 --- /dev/null +++ b/napalm/nxos_ssh/templates/delete_users.j2 @@ -0,0 +1,16 @@ +{%- for user_name, user_details in users.items() %} +{%- if user_details -%} +{%- if user_details.get('sshkeys') %} +{%- for sshkey in user_details.sshkeys %} +no username {{user_name}} sshkey {{ sshkey }} +{%- endfor %} +{%- endif %} +{%- if user_details.get('password') %} +no username {{user_name}} password +{%- endif %} +{%- if user_details.get('level') %} +no username {{user_name}} role priv-{{user_details.level}} +{%- endif %} +{%- endfor %} +{%- else -%} +{%- endif -%} diff --git a/napalm/nxos_ssh/templates/set_hostname.j2 b/napalm/nxos_ssh/templates/set_hostname.j2 new file mode 100644 index 000000000..5425366e8 --- /dev/null +++ b/napalm/nxos_ssh/templates/set_hostname.j2 @@ -0,0 +1 @@ +hostname {{hostname}} diff --git a/napalm/nxos_ssh/templates/set_ntp_peers.j2 b/napalm/nxos_ssh/templates/set_ntp_peers.j2 new file mode 100644 index 000000000..57b16edee --- /dev/null +++ b/napalm/nxos_ssh/templates/set_ntp_peers.j2 @@ -0,0 +1,4 @@ +{% for peer in peers %} +ntp peer {{peer}} +{% endfor %} +ntp commit diff --git a/napalm/nxos_ssh/templates/set_ntp_servers.j2 b/napalm/nxos_ssh/templates/set_ntp_servers.j2 new file mode 100644 index 000000000..b4758d25a --- /dev/null +++ b/napalm/nxos_ssh/templates/set_ntp_servers.j2 @@ -0,0 +1,4 @@ +{% for server in servers %} +ntp server {{server}} +{% endfor %} +ntp commit diff --git a/napalm/nxos_ssh/templates/set_users.j2 b/napalm/nxos_ssh/templates/set_users.j2 new file mode 100644 index 000000000..c49f78341 --- /dev/null +++ b/napalm/nxos_ssh/templates/set_users.j2 @@ -0,0 +1,13 @@ +{%- for user_name, user_details in users.items() %} +{%- if user_details.get('sshkeys') %} +{%- for sshkey in user_details.sshkeys %} +username {{user_name}} sshkey {{ sshkey }} +{%- endfor %} +{%- endif %} +{%- if user_details.get('password') %} +username {{user_name}} password 5 {{user_details.password}} +{%- endif %} +{%- if user_details.get('level') %} +username {{user_name}} role priv-{{user_details.level}} +{%- endif %} +{%- endfor %} diff --git a/napalm/nxos_ssh/templates/snmp_config.j2 b/napalm/nxos_ssh/templates/snmp_config.j2 new file mode 100644 index 000000000..4e98e561b --- /dev/null +++ b/napalm/nxos_ssh/templates/snmp_config.j2 @@ -0,0 +1,22 @@ +{% if (location is defined) and location %} +snmp-server location "{{location}}" +{% endif %} +{% if (contact is defined) and contact %} +snmp-server contact "{{contact}}" +{% endif %} +{% if (chassis_id is defined) and chassis_id %} +snmp-server chassis-id "{{chassis_id}}" +{% endif %} +{% if (community is defined) and community %} +{% for comm_name, comm_details in community.iteritems() %} +{% if (comm_details is defined) and comm_details %} +{% if (comm_details.get('mode') is defined) and comm_details.get('mode') == 'rw' %} +community {{comm_name}} rw +{% else %} +community {{comm_name}} ro +{% endif %} +{% else %} +community {{comm_name}} ro +{% endif %} +{% endfor %} +{% endif %} diff --git a/napalm/nxos_ssh/utils/__init__.py b/napalm/nxos_ssh/utils/__init__.py new file mode 100644 index 000000000..678164aea --- /dev/null +++ b/napalm/nxos_ssh/utils/__init__.py @@ -0,0 +1 @@ +"""napalm.utils package.""" diff --git a/napalm/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl b/napalm/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl new file mode 100644 index 000000000..77f55ad2a --- /dev/null +++ b/napalm/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl @@ -0,0 +1,9 @@ +Value NEIGHBOR (\S+) +Value LOCAL_INTERFACE (\S+) +Value NEIGHBOR_INTERFACE (\S+) + +Start + ^Device.*ID -> LLDP + +LLDP + ^${NEIGHBOR}\s+${LOCAL_INTERFACE}\s+\d+\s+[\w+\s]+\S+\s+${NEIGHBOR_INTERFACE} -> Record diff --git a/napalm/nxos_ssh/utils/textfsm_templates/snmp_config.tpl b/napalm/nxos_ssh/utils/textfsm_templates/snmp_config.tpl new file mode 100644 index 000000000..aa070fd53 --- /dev/null +++ b/napalm/nxos_ssh/utils/textfsm_templates/snmp_config.tpl @@ -0,0 +1,10 @@ +Value Location (.*) +Value Contact (.*) +Value Community (\S+) +Value Mode (network\-admin|network\-operator) +Value ACL (\S+) + +Start + ^snmp-server\slocation\s${Location} -> Record + ^snmp-server\scontact\s${Contact} -> Record + ^snmp-server\scommunity\s${Community}\s((group\s+${Mode}|use\-.+\s+${ACL})) -> Next.Record diff --git a/napalm/nxos_ssh/utils/textfsm_templates/users.tpl b/napalm/nxos_ssh/utils/textfsm_templates/users.tpl new file mode 100644 index 000000000..141fd5df3 --- /dev/null +++ b/napalm/nxos_ssh/utils/textfsm_templates/users.tpl @@ -0,0 +1,13 @@ +Value Username (\w+.*) +Value Password (.*) +Value Role (\w+.*) +Value SSHKeyType (ssh-rsa|ssh-dsa) +Value SSHKeyValue (\w+.*) + + +Start + ^username\s+${Username}\s+password\s+\d+\s+${Password}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+sshkey\s+${SSHKeyType}\s+${SSHKeyValue} -> Record + +EOF diff --git a/requirements/all b/requirements/all index 57a9332d0..116566e17 100644 --- a/requirements/all +++ b/requirements/all @@ -2,3 +2,4 @@ -r eos -r ios -r junos +-r nxos diff --git a/requirements/dev b/requirements/dev index 20005e079..927b3d350 100644 --- a/requirements/dev +++ b/requirements/dev @@ -6,3 +6,5 @@ pytest-cov pytest-json pytest-pythonpath pylama +mock +tox diff --git a/requirements/nxos b/requirements/nxos new file mode 100644 index 000000000..c63c8caed --- /dev/null +++ b/requirements/nxos @@ -0,0 +1,3 @@ +pynxos +netmiko>=1.4.3 +scp diff --git a/requirements/nxos_ssh b/requirements/nxos_ssh new file mode 120000 index 000000000..3905f4b2e --- /dev/null +++ b/requirements/nxos_ssh @@ -0,0 +1 @@ +requirements/nxos \ No newline at end of file diff --git a/setup.py b/setup.py index 81ee15c16..6d3e15e2f 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def run(self): setup( cmdclass=custom_commands, name="napalm", - version='2.0.0a3', + version='2.0.0a4', packages=find_packages(exclude=("test*", )), test_suite='test_base', author="David Barroso, Kirk Byers, Mircea Ulinic", diff --git a/staging/MANIFEST.in b/staging/MANIFEST.in index 6d687bcb0..5ac2f21c9 100644 --- a/staging/MANIFEST.in +++ b/staging/MANIFEST.in @@ -1,3 +1,4 @@ include requirements/* -include napalm/eos/templates/*.j2 -include napalm/eos/utils/textfsm_templates/*.tpl +include napalm/*/templates/*.j2 +include napalm/*/utils/textfsm_templates/*.tpl +include napalm/junos/utils/*.yml diff --git a/staging/setup.cfg b/staging/setup.cfg index ca3ed3430..27014efcf 100644 --- a/staging/setup.cfg +++ b/staging/setup.cfg @@ -15,13 +15,12 @@ norecursedirs = build south_migraitons migrations - napalm_base python_files = test_*.py *_test.py tests.py addopts = - --cov=napalm_base + --cov=napalm --cov-report term-missing -vs --pylama @@ -35,3 +34,4 @@ include = [coverage:report] omit = napalm/base/test/* + napalm/base/clitools/* diff --git a/staging/setup.py b/staging/setup.py index b827d52b3..81ee15c16 100644 --- a/staging/setup.py +++ b/staging/setup.py @@ -1,18 +1,66 @@ """setup.py file.""" +import napalm + import uuid +from distutils.core import Command from setuptools import setup, find_packages +from setuptools.command import install + + from pip.req import parse_requirements +import pip +import sys + + __author__ = 'David Barroso ' -install_reqs = parse_requirements('requirements/all', session=uuid.uuid1()) -reqs = [str(ir.req) for ir in install_reqs] +def process_requirements(dep): + print("PROCESSING DEPENDENCIES FOR {}".format(dep)) + u = uuid.uuid1() + iter_reqs = parse_requirements("requirements/{}".format(dep), session=u) + [pip.main(['install', (str(ir.req))]) for ir in iter_reqs] + + +def custom_command_driver(driver): + class CustomCommand(Command): + """A custom command to run Pylint on all Python source files.""" + user_options = [] + + def initialize_options(self): + pass + + def finalize_options(self): + pass + + def run(self): + """Run command.""" + process_requirements(driver) + + return CustomCommand + + +class CustomInstall(install.install): + """A custom command to run Pylint on all Python source files.""" + + def run(self): + """Run command.""" + if any([d in sys.argv for d in napalm.SUPPORTED_DRIVERS]): + process_requirements('base') + else: + process_requirements('all') + install.install.run(self) + + +custom_commands = {d: custom_command_driver(d) for d in napalm.SUPPORTED_DRIVERS} +custom_commands['install'] = CustomInstall setup( + cmdclass=custom_commands, name="napalm", - version='2.00.0-alpha-1', + version='2.0.0a3', packages=find_packages(exclude=("test*", )), test_suite='test_base', author="David Barroso, Kirk Byers, Mircea Ulinic", @@ -25,13 +73,14 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', - 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Operating System :: POSIX :: Linux', 'Operating System :: MacOS', ], url="https://github.com/napalm-automation/napalm", include_package_data=True, - install_requires=reqs, + install_requires=[], entry_points={ 'console_scripts': [ 'cl_napalm_configure=napalm.base.clitools.cl_napalm_configure:main', diff --git a/test_base/base/test_get_network_driver.py b/test_base/base/test_get_network_driver.py index e07867bf7..c14ff674d 100644 --- a/test_base/base/test_get_network_driver.py +++ b/test_base/base/test_get_network_driver.py @@ -15,7 +15,7 @@ class TestGetNetworkDriver(unittest.TestCase): """Test the method get_network_driver.""" # MIGRATION - network_drivers = ('eos', 'napalm.eos', 'junos', 'ios', ) + network_drivers = ('eos', 'napalm.eos', 'junos', 'ios', 'nxos', 'nxos_ssh', ) # 'iosxr', 'IOS-XR', 'junos', 'ros', # 'nxos', 'pluribus', 'panos', 'vyos') diff --git a/test_base/nxos/TestDriver.py b/test_base/nxos/TestDriver.py new file mode 100644 index 000000000..1f97ea4cc --- /dev/null +++ b/test_base/nxos/TestDriver.py @@ -0,0 +1,34 @@ +# Copyright 2015 Spotify AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +import unittest + +from napalm.nxos import nxos +from napalm.base.test.base import TestConfigNetworkDriver + + +class TestConfigNXOSDriver(unittest.TestCase, TestConfigNetworkDriver): + + @classmethod + def setUpClass(cls): + hostname = '127.0.0.1' + username = 'vagrant' + password = 'vagrant' + cls.vendor = 'nxos' + + cls.device = nxos.NXOSDriver(hostname, username, password) + cls.device.open() + + cls.device.load_replace_candidate(filename='%s/initial.conf' % cls.vendor) + cls.device.commit_config() diff --git a/test_base/nxos/__init__.py b/test_base/nxos/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/test_base/nxos/conftest.py b/test_base/nxos/conftest.py new file mode 100644 index 000000000..43715dfd6 --- /dev/null +++ b/test_base/nxos/conftest.py @@ -0,0 +1,72 @@ +"""Test fixtures.""" +from builtins import super + +import pytest +from napalm.base.test import conftest as parent_conftest + +from napalm.base.test.double import BaseTestDouble + +from napalm.nxos import nxos + + +@pytest.fixture(scope='class') +def set_device_parameters(request): + """Set up the class.""" + def fin(): + request.cls.device.close() + request.addfinalizer(fin) + + request.cls.driver = nxos.NXOSDriver + request.cls.patched_driver = PatchedNXOSDriver + request.cls.vendor = 'nxos' + parent_conftest.set_device_parameters(request) + + +def pytest_generate_tests(metafunc): + """Generate test cases dynamically.""" + parent_conftest.pytest_generate_tests(metafunc, __file__) + + +class PatchedNXOSDriver(nxos.NXOSDriver): + """Patched NXOS Driver.""" + + def __init__(self, hostname, username, password, timeout=60, optional_args=None): + super().__init__(hostname, username, password, timeout, optional_args) + + self.patched_attrs = ['device'] + self.device = FakeNXOSDevice() + + def disconnect(self): + pass + + def is_alive(self): + return { + 'is_alive': True # In testing everything works.. + } + + def open(self): + pass + + +class FakeNXOSDevice(BaseTestDouble): + """NXOS device test double.""" + def __init__(self): + super().__init__() + full_path = self.find_file('test_get_facts/normal/facts.json') + self.facts = self.read_json_file(full_path) + + def show(self, command, raw_text=False): + """Fake show.""" + filename = '{}.json'.format(command.replace(' ', '_')) + full_path = self.find_file(filename) + + if raw_text: + result = self.read_txt_file(full_path) + else: + result = self.read_json_file(full_path) + + return result + + def config_list(self, command): + """Fake config_list.""" + pass diff --git a/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/expected_result.json b/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/expected_result.json new file mode 100644 index 000000000..803aeb7ff --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/expected_result.json @@ -0,0 +1,8 @@ +[ + { + "interface": "Vlan100", + "ip": "10.122.100.3", + "mac": "18:8B:9D:0B:B3:3F", + "age": 583.0 + } +] diff --git a/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/show_ip_arp.json b/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/show_ip_arp.json new file mode 100644 index 000000000..f85020aa7 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/alt_test1/show_ip_arp.json @@ -0,0 +1,18 @@ +{ + "TABLE_vrf": { + "ROW_vrf": { + "vrf-name-out": "default", + "TABLE_adj": { + "ROW_adj": [ + { + "ip-addr-out": "10.122.100.3", + "mac": "188b.9d0b.b33f", + "time-stamp": "00:09:43", + "intf-out": "Vlan100" + } + ] + }, + "cnt-total": "2438" + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_arp_table/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_arp_table/normal/expected_result.json new file mode 100644 index 000000000..27fdfb588 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/normal/expected_result.json @@ -0,0 +1,8 @@ +[ + { + "interface": "Ethernet2/1", + "ip": "1.1.1.1", + "mac": "00:0A:00:0A:00:0A", + "age": -1.0 + } +] diff --git a/test_base/nxos/mocked_data/test_get_arp_table/normal/show_ip_arp.json b/test_base/nxos/mocked_data/test_get_arp_table/normal/show_ip_arp.json new file mode 100644 index 000000000..936e5129a --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/normal/show_ip_arp.json @@ -0,0 +1 @@ +{"TABLE_vrf": {"ROW_vrf": {"cnt-total": 1, "vrf-name-out": "default", "TABLE_adj": {"ROW_adj": {"mac": "000a.000a.000a", "time-stamp": "-", "intf-out": "Ethernet2/1", "ip-addr-out": "1.1.1.1"}}}}} diff --git a/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/expected_result.json b/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/expected_result.json new file mode 100644 index 000000000..68f277b8c --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/expected_result.json @@ -0,0 +1,8 @@ +[ + { + "interface": "Vlan100", + "ip": "10.122.100.3", + "mac": "18:8B:9D:0B:B3:3F", + "age": 0.4 + } +] diff --git a/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/show_ip_arp.json b/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/show_ip_arp.json new file mode 100644 index 000000000..b84255e15 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_arp_table/test_sub_second_data/show_ip_arp.json @@ -0,0 +1,18 @@ +{ + "TABLE_vrf": { + "ROW_vrf": { + "vrf-name-out": "default", + "TABLE_adj": { + "ROW_adj": [ + { + "ip-addr-out": "10.122.100.3", + "mac": "188b.9d0b.b33f", + "time-stamp": "0.411797", + "intf-out": "Vlan100" + } + ] + }, + "cnt-total": "2438" + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/expected_result.json new file mode 100644 index 000000000..5011aa0fe --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/expected_result.json @@ -0,0 +1,48 @@ +{ + "global": { + "router_id": "10.0.0.100", + "peers": {} + }, + "management": { + "router_id": "10.1.100.20", + "peers": { + "10.1.100.21": { + "is_enabled": true, + "uptime": -1, + "remote_as": 65535, + "description": "", + "remote_id": "10.1.100.21", + "local_as": 65535, + "is_up": true, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + } + } + } + }, + "red": { + "router_id": "10.1.100.20", + "peers": { + "10.1.100.21": { + "is_enabled": true, + "uptime": -1, + "remote_as": 4261806180, + "description": "", + "remote_id": "10.1.100.21", + "local_as": 65535, + "is_up": true, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + } + } + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.json b/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.json new file mode 100644 index 000000000..91f826fe8 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.json @@ -0,0 +1,54 @@ +{ + "totalpeers": "1", + "totalestablishedpeers": "0", + "localas": "65535", + "TABLE_vrf": { + "ROW_vrf": [{ + "vrf-name-out": "default", + "local-as": "65535", + "vrfpeers": "0", + "vrfestablishedpeers": "0", + "router-id": "10.0.0.100" + }, { + "vrf-name-out": "management", + "local-as": "65535", + "vrfpeers": "1", + "vrfestablishedpeers": "0", + "router-id": "10.1.100.20", + "TABLE_neighbor": { + "ROW_neighbor": { + "neighbor-id": "10.1.100.21", + "remoteas": "65535", + "connectionsdropped": "7", + "localport": "0/0", + "notificationssent": "6", + "notificationsreceived": "0", + "lastflap": "P1M6DT17H23M26S", + "lastread": "PT0S", + "lastwrite": "PT0S", + "state": "Established" + } + } + }, { + "vrf-name-out": "red", + "local-as": "65535", + "vrfpeers": "1", + "vrfestablishedpeers": "0", + "router-id": "10.1.100.20", + "TABLE_neighbor": { + "ROW_neighbor": { + "neighbor-id": "10.1.100.21", + "remoteas": "65030.100", + "connectionsdropped": "7", + "localport": "0/0", + "notificationssent": "6", + "notificationsreceived": "0", + "lastflap": "P1M6DT17H23M26S", + "lastread": "PT0S", + "lastwrite": "PT0S", + "state": "Established" + } + } + }] + } +} diff --git a/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/expected_result.json b/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/expected_result.json new file mode 100644 index 000000000..08f8460f0 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/expected_result.json @@ -0,0 +1,55 @@ +{ + "global": { + "router_id": "10.10.10.1", + "peers": { + "10.99.99.2": { + "is_enabled": true, + "uptime": -1, + "remote_as": 22, + "description": "", + "remote_id": "10.99.99.2", + "local_as": 22, + "is_up": false, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + } + }, + "1.1.1.1": { + "is_enabled": true, + "uptime": -1, + "remote_as": 33, + "description": "", + "remote_id": "1.1.1.1", + "local_as": 22, + "is_up": false, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + } + }, + "10.20.20.2": { + "is_enabled": true, + "uptime": -1, + "remote_as": 22, + "description": "", + "remote_id": "10.20.20.2", + "local_as": 22, + "is_up": true, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + } + } + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/show_bgp_sessions_vrf_all.json b/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/show_bgp_sessions_vrf_all.json new file mode 100644 index 000000000..1f0a49fcb --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_bgp_neighbors/nxosv_three_peers/show_bgp_sessions_vrf_all.json @@ -0,0 +1,57 @@ +{ + "totalpeers": 3, + "totalestablishedpeers": 1, + "localas": 22, + "TABLE_vrf": { + "ROW_vrf": { + "vrf-name-out": "default", + "local-as": 22, + "vrfpeers": 3, + "vrfestablishedpeers": 1, + "router-id": "10.10.10.1", + "TABLE_neighbor": { + "ROW_neighbor": [ + { + "neighbor-id": "1.1.1.1", + "remoteas": 33, + "connectionsdropped": 0, + "lastflap": "P3DT29M9S", + "lastread": "P1MT4H9M34S", + "lastwrite": "P1MT4H9M34S", + "state": "Idle", + "localport": 0, + "remoteport": 0, + "notificationssent": 0, + "notificationsreceived": 0 + }, + { + "neighbor-id": "10.20.20.2", + "remoteas": 22, + "connectionsdropped": 0, + "lastflap": "PT2H4M28S", + "lastread": "PT26S", + "lastwrite": "PT25S", + "state": "Established", + "localport": 179, + "remoteport": 53566, + "notificationssent": 0, + "notificationsreceived": 0 + }, + { + "neighbor-id": "10.99.99.2", + "remoteas": 22, + "connectionsdropped": 1, + "lastflap": "PT2H56M3S", + "lastread": "P1MT4H9M34S", + "lastwrite": "P1MT4H9M34S", + "state": "Idle", + "localport": 0, + "remoteport": 0, + "notificationssent": 1, + "notificationsreceived": 0 + } + ] + } + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/expected_result.json new file mode 100644 index 000000000..a5da36d32 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/expected_result.json @@ -0,0 +1,1129 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Thu Dec 15 07:56:04 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/show_file_temp_cp_file_from_napalm.json b/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/show_file_temp_cp_file_from_napalm.json new file mode 100644 index 000000000..a5da36d32 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_checkpoint_file/normal/show_file_temp_cp_file_from_napalm.json @@ -0,0 +1,1129 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Thu Dec 15 07:56:04 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.604f.feb2 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos/mocked_data/test_get_config/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_config/normal/expected_result.json new file mode 100644 index 000000000..b9e1d6b16 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config/normal/expected_result.json @@ -0,0 +1,5 @@ +{ + "running": "!Command: show running-config\n!Time: Thu Dec 15 18:05:42 2016\n\nversion 7.3(1)D1(1)\npower redundancy-mode redundant\n\nhostname nxos-spine1\nvdc nxos-spine1 id 1\n limit-resource module-type m1 m1xl m2xl f2e\n allocate interface Ethernet2/1-48\n allocate interface Ethernet3/1-48\n allocate interface Ethernet4/1-48\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 768\n limit-resource u4route-mem minimum 96 maximum 96\n limit-resource u6route-mem minimum 24 maximum 24\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\n\nfeature scp-server\ncfs eth distribute\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature nxapi\n", + "startup": "!Command: show running-config\n!Time: Thu Dec 15 18:05:42 2016\n\nversion 7.3(1)D1(1)\npower redundancy-mode redundant\n\nhostname nxos-spine1\nvdc nxos-spine1 id 1\n limit-resource module-type m1 m1xl m2xl f2e\n allocate interface Ethernet2/1-48\n allocate interface Ethernet3/1-48\n allocate interface Ethernet4/1-48\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 768\n limit-resource u4route-mem minimum 96 maximum 96\n limit-resource u6route-mem minimum 24 maximum 24\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\n\nfeature scp-server\ncfs eth distribute\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature nxapi\n", + "candidate": "" +} diff --git a/test_base/nxos/mocked_data/test_get_config/normal/show_running-config.json b/test_base/nxos/mocked_data/test_get_config/normal/show_running-config.json new file mode 100644 index 000000000..f602a1734 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config/normal/show_running-config.json @@ -0,0 +1,26 @@ +!Command: show running-config +!Time: Thu Dec 15 18:05:42 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi diff --git a/test_base/nxos/mocked_data/test_get_config/normal/show_startup-config.json b/test_base/nxos/mocked_data/test_get_config/normal/show_startup-config.json new file mode 100644 index 000000000..f602a1734 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config/normal/show_startup-config.json @@ -0,0 +1,26 @@ +!Command: show running-config +!Time: Thu Dec 15 18:05:42 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi diff --git a/test_base/nxos/mocked_data/test_get_config_filtered/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_config_filtered/normal/expected_result.json new file mode 100644 index 000000000..c162bbc99 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config_filtered/normal/expected_result.json @@ -0,0 +1 @@ +{"running": "", "startup": "", "candidate": ""} diff --git a/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_running-config.json b/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_running-config.json new file mode 100644 index 000000000..f602a1734 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_running-config.json @@ -0,0 +1,26 @@ +!Command: show running-config +!Time: Thu Dec 15 18:05:42 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi diff --git a/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_startup-config.json b/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_startup-config.json new file mode 100644 index 000000000..f602a1734 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_config_filtered/normal/show_startup-config.json @@ -0,0 +1,26 @@ +!Command: show running-config +!Time: Thu Dec 15 18:05:42 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi diff --git a/test_base/nxos/mocked_data/test_get_facts/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_facts/normal/expected_result.json new file mode 100644 index 000000000..cb898d8ba --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_facts/normal/expected_result.json @@ -0,0 +1,157 @@ +{ + "uptime": 3670, + "vendor": "Cisco", + "hostname": "nxos-spine1", + "fqdn": "nxos-spine1", + "os_version": "7.3(1)D1(1) [build 7.3(1)D1(0.10)]", + "serial_number": "TM6017D760B", + "model": "NX-OSv Chassis", + "interface_list": [ + "mgmt0", + "Ethernet2/1", + "Ethernet2/2", + "Ethernet2/3", + "Ethernet2/4", + "Ethernet2/5", + "Ethernet2/6", + "Ethernet2/7", + "Ethernet2/8", + "Ethernet2/9", + "Ethernet2/10", + "Ethernet2/11", + "Ethernet2/12", + "Ethernet2/13", + "Ethernet2/14", + "Ethernet2/15", + "Ethernet2/16", + "Ethernet2/17", + "Ethernet2/18", + "Ethernet2/19", + "Ethernet2/20", + "Ethernet2/21", + "Ethernet2/22", + "Ethernet2/23", + "Ethernet2/24", + "Ethernet2/25", + "Ethernet2/26", + "Ethernet2/27", + "Ethernet2/28", + "Ethernet2/29", + "Ethernet2/30", + "Ethernet2/31", + "Ethernet2/32", + "Ethernet2/33", + "Ethernet2/34", + "Ethernet2/35", + "Ethernet2/36", + "Ethernet2/37", + "Ethernet2/38", + "Ethernet2/39", + "Ethernet2/40", + "Ethernet2/41", + "Ethernet2/42", + "Ethernet2/43", + "Ethernet2/44", + "Ethernet2/45", + "Ethernet2/46", + "Ethernet2/47", + "Ethernet2/48", + "Ethernet3/1", + "Ethernet3/2", + "Ethernet3/3", + "Ethernet3/4", + "Ethernet3/5", + "Ethernet3/6", + "Ethernet3/7", + "Ethernet3/8", + "Ethernet3/9", + "Ethernet3/10", + "Ethernet3/11", + "Ethernet3/12", + "Ethernet3/13", + "Ethernet3/14", + "Ethernet3/15", + "Ethernet3/16", + "Ethernet3/17", + "Ethernet3/18", + "Ethernet3/19", + "Ethernet3/20", + "Ethernet3/21", + "Ethernet3/22", + "Ethernet3/23", + "Ethernet3/24", + "Ethernet3/25", + "Ethernet3/26", + "Ethernet3/27", + "Ethernet3/28", + "Ethernet3/29", + "Ethernet3/30", + "Ethernet3/31", + "Ethernet3/32", + "Ethernet3/33", + "Ethernet3/34", + "Ethernet3/35", + "Ethernet3/36", + "Ethernet3/37", + "Ethernet3/38", + "Ethernet3/39", + "Ethernet3/40", + "Ethernet3/41", + "Ethernet3/42", + "Ethernet3/43", + "Ethernet3/44", + "Ethernet3/45", + "Ethernet3/46", + "Ethernet3/47", + "Ethernet3/48", + "Ethernet4/1", + "Ethernet4/2", + "Ethernet4/3", + "Ethernet4/4", + "Ethernet4/5", + "Ethernet4/6", + "Ethernet4/7", + "Ethernet4/8", + "Ethernet4/9", + "Ethernet4/10", + "Ethernet4/11", + "Ethernet4/12", + "Ethernet4/13", + "Ethernet4/14", + "Ethernet4/15", + "Ethernet4/16", + "Ethernet4/17", + "Ethernet4/18", + "Ethernet4/19", + "Ethernet4/20", + "Ethernet4/21", + "Ethernet4/22", + "Ethernet4/23", + "Ethernet4/24", + "Ethernet4/25", + "Ethernet4/26", + "Ethernet4/27", + "Ethernet4/28", + "Ethernet4/29", + "Ethernet4/30", + "Ethernet4/31", + "Ethernet4/32", + "Ethernet4/33", + "Ethernet4/34", + "Ethernet4/35", + "Ethernet4/36", + "Ethernet4/37", + "Ethernet4/38", + "Ethernet4/39", + "Ethernet4/40", + "Ethernet4/41", + "Ethernet4/42", + "Ethernet4/43", + "Ethernet4/44", + "Ethernet4/45", + "Ethernet4/46", + "Ethernet4/47", + "Ethernet4/48", + "Vlan1" + ] +} diff --git a/test_base/nxos/mocked_data/test_get_facts/normal/facts.json b/test_base/nxos/mocked_data/test_get_facts/normal/facts.json new file mode 100644 index 000000000..4540e2839 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_facts/normal/facts.json @@ -0,0 +1 @@ +{"uptime_string": "00:01:01:10", "uptime": 3670, "vlans": ["1"], "os_version": "7.3(1)D1(1) [build 7.3(1)D1(0.10)]", "serial_number": "TM6017D760B", "model": "NX-OSv Chassis", "hostname": "nxos-spine1", "interfaces": ["mgmt0", "Ethernet2/1", "Ethernet2/2", "Ethernet2/3", "Ethernet2/4", "Ethernet2/5", "Ethernet2/6", "Ethernet2/7", "Ethernet2/8", "Ethernet2/9", "Ethernet2/10", "Ethernet2/11", "Ethernet2/12", "Ethernet2/13", "Ethernet2/14", "Ethernet2/15", "Ethernet2/16", "Ethernet2/17", "Ethernet2/18", "Ethernet2/19", "Ethernet2/20", "Ethernet2/21", "Ethernet2/22", "Ethernet2/23", "Ethernet2/24", "Ethernet2/25", "Ethernet2/26", "Ethernet2/27", "Ethernet2/28", "Ethernet2/29", "Ethernet2/30", "Ethernet2/31", "Ethernet2/32", "Ethernet2/33", "Ethernet2/34", "Ethernet2/35", "Ethernet2/36", "Ethernet2/37", "Ethernet2/38", "Ethernet2/39", "Ethernet2/40", "Ethernet2/41", "Ethernet2/42", "Ethernet2/43", "Ethernet2/44", "Ethernet2/45", "Ethernet2/46", "Ethernet2/47", "Ethernet2/48", "Ethernet3/1", "Ethernet3/2", "Ethernet3/3", "Ethernet3/4", "Ethernet3/5", "Ethernet3/6", "Ethernet3/7", "Ethernet3/8", "Ethernet3/9", "Ethernet3/10", "Ethernet3/11", "Ethernet3/12", "Ethernet3/13", "Ethernet3/14", "Ethernet3/15", "Ethernet3/16", "Ethernet3/17", "Ethernet3/18", "Ethernet3/19", "Ethernet3/20", "Ethernet3/21", "Ethernet3/22", "Ethernet3/23", "Ethernet3/24", "Ethernet3/25", "Ethernet3/26", "Ethernet3/27", "Ethernet3/28", "Ethernet3/29", "Ethernet3/30", "Ethernet3/31", "Ethernet3/32", "Ethernet3/33", "Ethernet3/34", "Ethernet3/35", "Ethernet3/36", "Ethernet3/37", "Ethernet3/38", "Ethernet3/39", "Ethernet3/40", "Ethernet3/41", "Ethernet3/42", "Ethernet3/43", "Ethernet3/44", "Ethernet3/45", "Ethernet3/46", "Ethernet3/47", "Ethernet3/48", "Ethernet4/1", "Ethernet4/2", "Ethernet4/3", "Ethernet4/4", "Ethernet4/5", "Ethernet4/6", "Ethernet4/7", "Ethernet4/8", "Ethernet4/9", "Ethernet4/10", "Ethernet4/11", "Ethernet4/12", "Ethernet4/13", "Ethernet4/14", "Ethernet4/15", "Ethernet4/16", "Ethernet4/17", "Ethernet4/18", "Ethernet4/19", "Ethernet4/20", "Ethernet4/21", "Ethernet4/22", "Ethernet4/23", "Ethernet4/24", "Ethernet4/25", "Ethernet4/26", "Ethernet4/27", "Ethernet4/28", "Ethernet4/29", "Ethernet4/30", "Ethernet4/31", "Ethernet4/32", "Ethernet4/33", "Ethernet4/34", "Ethernet4/35", "Ethernet4/36", "Ethernet4/37", "Ethernet4/38", "Ethernet4/39", "Ethernet4/40", "Ethernet4/41", "Ethernet4/42", "Ethernet4/43", "Ethernet4/44", "Ethernet4/45", "Ethernet4/46", "Ethernet4/47", "Ethernet4/48", "Vlan1"], "fqdn": "N/A"} diff --git a/test_base/nxos/mocked_data/test_get_facts/normal/show_hostname.json b/test_base/nxos/mocked_data/test_get_facts/normal/show_hostname.json new file mode 100644 index 000000000..f2caf83c3 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_facts/normal/show_hostname.json @@ -0,0 +1 @@ +{"hostname": "nxos-spine1"} diff --git a/test_base/nxos/mocked_data/test_get_interfaces/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_interfaces/normal/expected_result.json new file mode 100644 index 000000000..b815d1711 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_interfaces/normal/expected_result.json @@ -0,0 +1,1170 @@ +{ + "Ethernet3/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Vlan1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "", + "speed": 0 + }, + "Ethernet3/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/1": { + "is_enabled": true, + "description": "", + "last_flapped": 1498617600, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet4/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/5": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/4": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/7": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/6": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/3": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/2": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/6": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/7": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/4": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/5": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/2": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/3": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet3/1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/7": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/6": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/5": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/4": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/3": { + "is_enabled": true, + "description": "", + "last_flapped": 1499978034, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/2": { + "is_enabled": true, + "description": "", + "last_flapped": 1499539200, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet3/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "mgmt0": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:17:D7:60", + "speed": 1000 + }, + "Ethernet2/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet3/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet4/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + } +} diff --git a/test_base/nxos/mocked_data/test_get_interfaces/normal/show_interface.json b/test_base/nxos/mocked_data/test_get_interfaces/normal/show_interface.json new file mode 100644 index 000000000..b191bc215 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_interfaces/normal/show_interface.json @@ -0,0 +1,12888 @@ +{ + "TABLE_interface": { + "ROW_interface": [ + { + "interface": "mgmt0", + "state": "up", + "admin_state": "up", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.6017.d760", + "eth_bia_addr": "2cc2.6017.d760", + "eth_ip_addr": "10.0.0.71", + "eth_ip_mask": 24, + "eth_ip_prefix": "10.0.0.0", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "171", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_autoneg": "on", + "eth_mdix": "off", + "eth_ethertype": "0x0000", + "vdc_lvl_in_avg_bytes": 200, + "vdc_lvl_in_avg_pkts": 0, + "vdc_lvl_out_avg_bytes": 2744, + "vdc_lvl_out_avg_pkts": 0, + "vdc_lvl_in_pkts": 704, + "vdc_lvl_in_ucast": 703, + "vdc_lvl_in_mcast": 1, + "vdc_lvl_in_bcast": 0, + "vdc_lvl_in_bytes": 48773, + "vdc_lvl_out_pkts": 1357, + "vdc_lvl_out_ucast": 1342, + "vdc_lvl_out_mcast": 13, + "vdc_lvl_out_bcast": 2, + "vdc_lvl_out_bytes": 723181 + }, + { + "interface": "Ethernet2/1", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.601c.7b66", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "2week(s) 2day(s)", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/2", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.606f.3eb5", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "5d08h", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/3", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6018.0c06", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "06:06:06", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/4", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6078.9a43", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/5", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6002.bac4", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/6", + "state": "up", + "admin_state": "up", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6044.755e", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "full", + "eth_speed": "1000 Mb/s", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 1, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/7", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6023.74a5", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/8", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.6073.3480", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/9", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "2cc2.603b.1f86", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/10", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/11", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/12", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/13", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/14", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/15", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/16", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/17", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/18", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/19", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/20", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/21", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/22", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/23", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/24", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/25", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/26", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/27", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/28", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/29", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/30", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/31", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/32", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/33", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/34", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/35", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/36", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/37", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/38", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/39", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/40", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/41", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/42", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/43", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/44", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/45", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/46", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/47", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet2/48", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "2cc2.604f.feb2", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/1", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/2", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/3", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/4", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/5", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/6", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/7", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/8", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/9", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/10", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/11", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/12", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/13", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/14", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/15", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/16", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/17", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/18", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/19", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/20", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/21", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/22", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/23", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/24", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/25", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/26", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/27", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/28", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/29", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/30", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/31", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/32", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/33", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/34", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/35", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/36", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/37", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/38", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/39", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/40", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/41", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/42", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/43", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/44", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/45", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/46", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/47", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet3/48", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/1", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/2", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/3", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/4", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/5", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/6", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/7", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/8", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/9", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "2cc2.604f.feb2", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/10", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/11", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/12", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/13", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/14", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/15", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/16", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/17", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/18", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/19", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/20", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/21", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/22", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/23", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/24", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/25", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/26", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/27", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/28", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/29", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/30", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/31", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/32", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/33", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/34", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/35", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/36", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/37", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/38", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/39", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/40", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/41", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/42", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/43", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/44", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/45", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/46", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/47", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Ethernet4/48", + "state": "down", + "state_rsn_desc": "Administratively down", + "admin_state": "down", + "share_state": "Dedicated", + "eth_hw_desc": "Ethernet", + "eth_hw_addr": "000c.29d1.d56b", + "eth_bia_addr": "0000.0000.0000", + "eth_mtu": "1500", + "eth_bw": 1000000, + "eth_dly": 10, + "eth_reliability": "255", + "eth_txload": "1", + "eth_rxload": "1", + "medium": "broadcast", + "eth_mode": "routed", + "eth_duplex": "auto", + "eth_speed": "auto-speed", + "eth_beacon": "off", + "eth_autoneg": "off", + "eth_in_flowctrl": "off", + "eth_out_flowctrl": "off", + "eth_mdix": "off", + "eth_swt_monitor": "off", + "eth_ethertype": "0x8100", + "eth_eee_state": "n/a", + "eth_link_flapped": "never", + "eth_clear_counters": "never", + "eth_reset_cntr": 0, + "eth_load_interval1_rx": 0, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 0, + "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": 0, + "eth_inrate2_bits": 0, + "eth_inrate2_pkts": 0, + "eth_load_interval2_tx": 0, + "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": "Vlan1", + "svi_admin_state": "down", + "svi_rsn_desc": "Administratively down", + "svi_line_proto": "down", + "svi_mac": "2cc2.601c.7b94", + "svi_mtu": "1500", + "svi_bw": "1000000", + "svi_delay": "10", + "vlan_id": "1", + "type": "svi", + "svi_tx_load": 1, + "svi_rx_load": 1, + "svi_arp_type": "ARPA", + "svi_time_last_cleared": "never", + "eth_load_interval1_rx": 60, + "eth_inrate1_bits": 0, + "eth_inrate1_pkts": 0, + "eth_load_interval1_tx": 60, + "eth_outrate1_bits": 0, + "eth_outrate1_pkts": 0, + "svi_routed_pkts_in": "0", + "svi_routed_bytes_in": "0", + "svi_routed_pkts_out": "0", + "svi_routed_bytes_out": "0", + "svi_ucast_pkts_in": "0", + "svi_ucast_bytes_in": "0", + "svi_mcast_pkts_in": "0", + "svi_mcast_bytes_in": "0", + "svi_ucast_pkts_out": "0", + "svi_ucast_bytes_out": "0", + "svi_mcast_pkts_out": "0", + "svi_mcast_bytes_out": "0" + } + ] + } +} diff --git a/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/expected_result.json new file mode 100644 index 000000000..b56a3125c --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/expected_result.json @@ -0,0 +1,51 @@ +{ + "Ethernet1/1": { + "ipv4": { + "172.16.100.1": { + "prefix_length": 24 + } + } + }, + "Ethernet1/7": { + "ipv6": { + "fe80::5287:89ff:fea1:de75": { + "prefix_length": 128 + } + } + }, + "loopback103": { + "ipv4": { + "192.168.3.100": { + "prefix_length": 24 + } + } + }, + "loopback102": { + "ipv4": { + "192.168.2.100": { + "prefix_length": 24 + } + } + }, + "loopback101": { + "ipv4": { + "192.168.1.100": { + "prefix_length": 24 + } + } + }, + "loopback100": { + "ipv4": { + "10.0.0.100": { + "prefix_length": 24 + } + } + }, + "Ethernet2/5": { + "ipv4": { + "1.1.1.1": { + "prefix_length": 24 + } + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ip_interface.json b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ip_interface.json new file mode 100644 index 000000000..11eebda7a --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ip_interface.json @@ -0,0 +1,190 @@ +{ + "TABLE_vrf": [{ + "ROW_vrf": { + "vrf-name-out": "default" + } + }, { + "ROW_vrf": { + "vrf-name-out": "default" + } + }, { + "ROW_vrf": { + "vrf-name-out": "default" + } + }, { + "ROW_vrf": { + "vrf-name-out": "default" + } + }, { + "ROW_vrf": { + "vrf-name-out": "default" + } + }, { + "ROW_vrf": { + "vrf-name-out": "default" + } + }], + "TABLE_intf": [{ + "ROW_intf": { + "intf-name": "loopback100", + "proto-state": "up", + "link-state": "up", + "admin-state": "up", + "iod": "82", + "prefix": "10.0.0.100", + "subnet": "10.0.0.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }, { + "ROW_intf": { + "intf-name": "loopback101", + "proto-state": "up", + "link-state": "up", + "admin-state": "up", + "iod": "83", + "prefix": "192.168.1.100", + "subnet": "192.168.1.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }, { + "ROW_intf": { + "intf-name": "loopback102", + "proto-state": "up", + "link-state": "up", + "admin-state": "up", + "iod": "84", + "prefix": "192.168.2.100", + "subnet": "192.168.2.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }, { + "ROW_intf": { + "intf-name": "loopback103", + "proto-state": "up", + "link-state": "up", + "admin-state": "up", + "iod": "85", + "prefix": "192.168.3.100", + "subnet": "192.168.3.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }, { + "ROW_intf": { + "intf-name": "Ethernet1/1", + "proto-state": "up", + "link-state": "up", + "admin-state": "up", + "iod": "5", + "prefix": "172.16.100.1", + "subnet": "172.16.100.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }, { + "ROW_intf": { + "intf-name": "Ethernet2/5", + "proto-state": "down", + "link-state": "down", + "admin-state": "down", + "iod": "57", + "prefix": "1.1.1.1", + "subnet": "1.1.1.0", + "masklen": "24", + "num-addr": "1", + "ip-disabled": "FALSE", + "bcast-addr": "255.255.255.255", + "num-maddr": "0", + "mtu": "1500", + "pref": "0", + "tag": "0", + "proxy-arp": "disabled", + "lcl-proxy-arp": "disabled", + "mrouting": "disabled", + "icmp-redirect": "enabled", + "dir-bcast": "disabled", + "ip-unreach": "disabled", + "port-unreach": "enabled", + "urpf-mode": "none", + "ip-ls-type": "none" + } + }] +} diff --git a/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface.json b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface.json new file mode 100644 index 000000000..a5df08ba9 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface.json @@ -0,0 +1,45 @@ +{ + "TABLE_vrf": { + "ROW_vrf": { + "vrf-name-out": "default" + } + }, + "TABLE_intf": { + "ROW_intf": { + "intf-name": "Ethernet1/7", + "proto-state": "down", + "link-state": "down", + "admin-state": "up", + "addr": "fe80::5287:89ff:fea1:de75", + "linklocal-addr": "fe80::5287:89ff:fea1:de75", + "linklocal-configured": "FALSE", + "mrouting-enabled": "disabled", + "mgroup-locally-joined": "TRUE", + "TABLE_maddr": { + "ROW_maddr": [{ + "m-addr": "ff02::2" + }, { + "m-addr": "ff02::1" + }, { + "m-addr": "ff02::1:ffa1:de75" + }] + }, + "mtu": "1500", + "urpf-mode": "none", + "ipv6-lstype": "none", + "stats-last-reset": "never", + "upkt-fwd": "0", + "upkt-orig": "0", + "upkt-consumed": "0", + "ubyte-fwd": "0", + "ubyte-orig": "0", + "ubyte-consumed": "0", + "mpkt-fwd": "0", + "mpkt-orig": "0", + "mpkt-consumed": "0", + "mbyte-fwd": "0", + "mbyte-orig": "0", + "mbyte-consumed": "0" + } + } +} diff --git a/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/expected_result.json new file mode 100644 index 000000000..51ace7303 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/expected_result.json @@ -0,0 +1,21 @@ +{ + "Eth1/1": [ + { + "hostname": "n9k2.ntc.com", + "port": "Ethernet1/1" + } + ], + "mgmt0": [ + { + "hostname": "PERIMETER.cisco.com", + "port": "Fa1/0/9" + } + ], + "Eth1/2": [ + { + "hostname": "n9k2.ntc.com", + "port": "Ethernet1/2" + } + ] +} + diff --git a/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.json b/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.json new file mode 100644 index 000000000..6829a5ab9 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.json @@ -0,0 +1,8 @@ +Capability codes: + (R) Router, (B) Bridge, (T) Telephone, (C) DOCSIS Cable Device + (W) WLAN Access Point, (P) Repeater, (S) Station, (O) Other +Device ID Local Intf Hold-time Capability Port ID +PERIMETER.cisco.com mgmt0 120 BR Fa1/0/9 +n9k2.ntc.com Eth1/1 120 BR Ethernet1/1 +n9k2.ntc.com Eth1/2 120 BR Ethernet1/2 +Total entries displayed: 3 diff --git a/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json new file mode 100644 index 000000000..fc0372ffd --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json @@ -0,0 +1,39 @@ +{ + "Eth1/1": [ + { + "remote_port_description": "Ethernet1/1", + "remote_port": "Ethernet1/1", + "remote_system_description": "Cisco Nexus Operating System (NX-OS) Software 7.0(3)I4(1)", + "remote_chassis_id": "50:87:89:A1:D8:D6", + "remote_system_enable_capab": "B, R", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "n9k2.ntc.com" + } + ], + "mgmt0": [ + { + "remote_port_description": "FastEthernet1/0/9", + "remote_port": "FastEthernet1/0/9", + "remote_system_description": "Cisco IOS Software, C3750 Software (C3750-IPBASEK9-M), Version 12.2(44)SE2, RELEASE SOFTWARE (fc2)", + "remote_chassis_id": "00:14:1C:57:A4:8B", + "remote_system_enable_capab": "B, R", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "PERIMETER.cisco.com" + } + ], + "Eth1/2": [ + { + "remote_port_description": "Ethernet1/2", + "remote_port": "Ethernet1/2", + "remote_system_description": "Cisco Nexus Operating System (NX-OS) Software 7.0(3)I4(1)", + "remote_chassis_id": "50:87:89:A1:D8:D7", + "remote_system_enable_capab": "B, R", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "n9k2.ntc.com" + } + ] +} + diff --git a/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.json b/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.json new file mode 100644 index 000000000..e8a2be6ec --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.json @@ -0,0 +1,51 @@ + +Capability codes: + (R) Router, (B) Bridge, (T) Telephone, (C) DOCSIS Cable Device + (W) WLAN Access Point, (P) Repeater, (S) Station, (O) Other +Device ID Local Intf Hold-time Capability Port ID + +Chassis id: 0014.1c57.a48b +Port id: Fa1/0/9 +Local Port id: mgmt0 +Port Description: FastEthernet1/0/9 +System Name: PERIMETER.cisco.com +System Description: Cisco IOS Software, C3750 Software (C3750-IPBASEK9-M), Version 12.2(44)SE2, RELEASE SOFTWARE (fc2) +Copyright (c) 1986-2008 by Cisco Systems, Inc. +Compiled Thu 01-May-08 15:42 by antonino +Time remaining: 92 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.1.100.1 +Vlan ID: 100 + + +Chassis id: 5087.89a1.d8d6 +Port id: Ethernet1/1 +Local Port id: Eth1/1 +Port Description: Ethernet1/1 +System Name: n9k2.ntc.com +System Description: Cisco Nexus Operating System (NX-OS) Software 7.0(3)I4(1) +TAC support: http://www.cisco.com/tac +Copyright (c) 2002-2016, Cisco Systems, Inc. All rights reserved. +Time remaining: 103 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.1.100.21 +Vlan ID: 1 + + +Chassis id: 5087.89a1.d8d7 +Port id: Ethernet1/2 +Local Port id: Eth1/2 +Port Description: Ethernet1/2 +System Name: n9k2.ntc.com +System Description: Cisco Nexus Operating System (NX-OS) Software 7.0(3)I4(1) +TAC support: http://www.cisco.com/tac +Copyright (c) 2002-2016, Cisco Systems, Inc. All rights reserved. +Time remaining: 103 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.1.100.21 +Vlan ID: 1 + +Total entries displayed: 3 diff --git a/test_base/nxos/mocked_data/test_get_mac_address_table/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_mac_address_table/normal/expected_result.json new file mode 100644 index 000000000..09cec9908 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_mac_address_table/normal/expected_result.json @@ -0,0 +1,12 @@ +[ + { + "vlan": 0, + "last_move": 0.0, + "active": true, + "mac": "50:87:89:A1:DE:75", + "static": true, + "interface": "SUP_INBAND_CFSOE(R)", + "moves": 0 + } +] + diff --git a/test_base/nxos/mocked_data/test_get_mac_address_table/normal/show_mac_address-table.json b/test_base/nxos/mocked_data/test_get_mac_address_table/normal/show_mac_address-table.json new file mode 100644 index 000000000..d3730a869 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_mac_address_table/normal/show_mac_address-table.json @@ -0,0 +1,2 @@ +{"header": ["Legend: \n\t* - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC\n\tage - seconds since last seen,+ - primary entry using vPC Peer-Link,\n\t(T) - True, (F) - False", "VLAN MAC Address Type age Secure NTFY Ports", "---------+-----------------+--------+---------+------+----+------------------"], "TABLE_mac_address": {"ROW_mac_address": {"disp_mac_addr": "5087.89a1.de75", "disp_type": "G", "disp_vlan": "0", "disp_is_static": "enabled", "disp_age": "0", "disp_is_secure": "disabled", "disp_is_ntfy": "disabled", "disp_port": "SUP_INBAND_CFSOE(R)"}}} + diff --git a/test_base/nxos/mocked_data/test_get_ntp_peers/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_ntp_peers/normal/expected_result.json new file mode 100644 index 000000000..b519e44a1 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_peers/normal/expected_result.json @@ -0,0 +1,4 @@ +{ + "2001:db8::4101": {} +} + diff --git a/test_base/nxos/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.json b/test_base/nxos/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.json new file mode 100644 index 000000000..3158b5ae5 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.json @@ -0,0 +1 @@ +{"TABLE_peers": {"ROW_peers": [{"PeerIPAddress": "33.33.33.33", "serv_peer": "Server", "conf_flag": "(configured)"}, {"PeerIPAddress": "2001:db8::4101", "serv_peer": "Peer", "conf_flag": "(configured)"}, {"PeerIPAddress": "127.127.1.1", "serv_peer": "Server", "conf_flag": "(configured)"}, {"PeerIPAddress": "192.0.2.10", "serv_peer": "Server", "conf_flag": "(configured)"}]}} diff --git a/test_base/nxos/mocked_data/test_get_ntp_servers/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_ntp_servers/normal/expected_result.json new file mode 100644 index 000000000..a174f5012 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_servers/normal/expected_result.json @@ -0,0 +1,5 @@ +{ + "33.33.33.33": {}, + "127.127.1.1": {}, + "192.0.2.10": {} +} diff --git a/test_base/nxos/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.json b/test_base/nxos/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.json new file mode 100644 index 000000000..f53b1d240 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.json @@ -0,0 +1,21 @@ +{ + "TABLE_peers": { + "ROW_peers": [{ + "PeerIPAddress": "33.33.33.33", + "serv_peer": "Server", + "conf_flag": "(configured)" + }, { + "PeerIPAddress": "2001:db8::4101", + "serv_peer": "Peer", + "conf_flag": "(configured)" + }, { + "PeerIPAddress": "127.127.1.1", + "serv_peer": "Server", + "conf_flag": "(configured)" + }, { + "PeerIPAddress": "192.0.2.10", + "serv_peer": "Server", + "conf_flag": "(configured)" + }] + } +} diff --git a/test_base/nxos/mocked_data/test_get_ntp_stats/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_ntp_stats/normal/expected_result.json new file mode 100644 index 000000000..9ab18e75c --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_stats/normal/expected_result.json @@ -0,0 +1,54 @@ +[ + { + "jitter": 0.0, + "synchronized": false, + "offset": 0.0, + "referenceid": "33.33.33.33", + "remote": "33.33.33.33", + "reachability": 0, + "when": "", + "delay": 0.0, + "hostpoll": 64, + "stratum": 16, + "type": "" + }, + { + "jitter": 0.0, + "synchronized": false, + "offset": 0.0, + "referenceid": "2001:db8::4101", + "remote": "2001:db8::4101", + "reachability": 0, + "when": "", + "delay": 0.0, + "hostpoll": 64, + "stratum": 16, + "type": "" + }, + { + "jitter": 0.0, + "synchronized": true, + "offset": 0.0, + "referenceid": "127.127.1.1", + "remote": "127.127.1.1", + "reachability": 377, + "when": "", + "delay": 0.0, + "hostpoll": 16, + "stratum": 5, + "type": "" + }, + { + "jitter": 0.0, + "synchronized": false, + "offset": 0.0, + "referenceid": "192.0.2.10", + "remote": "192.0.2.10", + "reachability": 0, + "when": "", + "delay": 0.0, + "hostpoll": 64, + "stratum": 16, + "type": "" + } +] diff --git a/test_base/nxos/mocked_data/test_get_ntp_stats/normal/show_ntp_peer-status.json b/test_base/nxos/mocked_data/test_get_ntp_stats/normal/show_ntp_peer-status.json new file mode 100644 index 000000000..2ea016ee7 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_ntp_stats/normal/show_ntp_peer-status.json @@ -0,0 +1 @@ +{"totalpeers": "Total peers : 4", "TABLE_peersstatus": {"ROW_peersstatus": [{"syncmode": "=", "remote": "33.33.33.33", "local": "0.0.0.0", "st": "16", "poll": "64", "reach": "0", "delay": "0.00000", "vrf": "default"}, {"syncmode": "+", "remote": "2001:db8::4101", "local": "::", "st": "16", "poll": "64", "reach": "0", "delay": "0.00000", "vrf": "default"}, {"syncmode": "*", "remote": "127.127.1.1", "local": "0.0.0.0", "st": "5", "poll":"16", "reach": "377", "delay": "0.00000", "vrf": "default"}, {"syncmode": "=", "remote": "192.0.2.10", "local": "0.0.0.0", "st": "16", "poll": "64", "reach": "0", "delay": "0.00000", "vrf": "default"}]}} diff --git a/test_base/nxos/mocked_data/test_get_snmp_information/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_snmp_information/normal/expected_result.json new file mode 100644 index 000000000..4cc22c04b --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_snmp_information/normal/expected_result.json @@ -0,0 +1,16 @@ +{ + "contact": "", + "location": "", + "chassis_id": "", + "community": { + "networktocode": { + "mode": "network-operator", + "acl": "" + }, + "public": { + "mode": "network-operator", + "acl": "" + } + } +} + diff --git a/test_base/nxos/mocked_data/test_get_snmp_information/normal/show_running-config.json b/test_base/nxos/mocked_data/test_get_snmp_information/normal/show_running-config.json new file mode 100644 index 000000000..8ffc6c4ef --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_snmp_information/normal/show_running-config.json @@ -0,0 +1,787 @@ + +!Command: show running-config +!Time: Thu Dec 15 08:28:10 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community public group network-operator +snmp-server community networktocode group network-operator + +vlan 1 + +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox + diff --git a/test_base/nxos/mocked_data/test_get_users/normal/expected_result.json b/test_base/nxos/mocked_data/test_get_users/normal/expected_result.json new file mode 100644 index 000000000..8e1cd8ed7 --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_users/normal/expected_result.json @@ -0,0 +1,13 @@ +{ + "admin": { + "password": "$5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7", + "sshkeys": [], + "level": 15 + }, + "ntc": { + "password": "$5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4", + "sshkeys": [], + "level": 15 + } +} + diff --git a/test_base/nxos/mocked_data/test_get_users/normal/show_running-config.json b/test_base/nxos/mocked_data/test_get_users/normal/show_running-config.json new file mode 100644 index 000000000..8ffc6c4ef --- /dev/null +++ b/test_base/nxos/mocked_data/test_get_users/normal/show_running-config.json @@ -0,0 +1,787 @@ + +!Command: show running-config +!Time: Thu Dec 15 08:28:10 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine1 +vdc nxos-spine1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community public group network-operator +snmp-server community networktocode group network-operator + +vlan 1 + +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 + +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox + diff --git a/test_base/nxos/mocked_data/test_is_alive/normal/expected_result.json b/test_base/nxos/mocked_data/test_is_alive/normal/expected_result.json new file mode 100644 index 000000000..43b92acbf --- /dev/null +++ b/test_base/nxos/mocked_data/test_is_alive/normal/expected_result.json @@ -0,0 +1 @@ +{"is_alive": true} diff --git a/test_base/nxos/mocked_data/test_traceroute/normal/expected_result.json b/test_base/nxos/mocked_data/test_traceroute/normal/expected_result.json new file mode 100644 index 000000000..1b4129ccf --- /dev/null +++ b/test_base/nxos/mocked_data/test_traceroute/normal/expected_result.json @@ -0,0 +1,213 @@ +{ + "success": { + "1": { + "probes": { + "1": { + "rtt": 0.743, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + }, + "2": { + "rtt": 0.838, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + }, + "3": { + "rtt": 0.876, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + } + } + }, + "2": { + "probes": { + "1": { + "rtt": 1.485, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + }, + "2": { + "rtt": 1.32, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + }, + "3": { + "rtt": 1.289, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + } + } + }, + "3": { + "probes": { + "1": { + "rtt": 4.087, + "ip_address": "120.28.10.210", + "host_name": "120.28.10.210" + }, + "2": { + "rtt": 2.244, + "ip_address": "120.28.10.110", + "host_name": "120.28.10.110" + }, + "3": { + "rtt": 2.208, + "ip_address": "120.28.10.110", + "host_name": "120.28.10.110" + } + } + }, + "4": { + "probes": { + "1": { + "rtt": 20.469, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + }, + "2": { + "rtt": 19.851, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + }, + "3": { + "rtt": 19.707, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + } + } + }, + "5": { + "probes": { + "1": { + "rtt": 63.815, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + }, + "2": { + "rtt": 64.007, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + }, + "3": { + "rtt": 63.643, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + } + } + }, + "6": { + "probes": { + "1": { + "rtt": 42.586, + "ip_address": "209.85.248.60", + "host_name": "209.85.248.60" + }, + "2": { + "rtt": 42.935, + "ip_address": "209.85.248.62", + "host_name": "209.85.248.62" + }, + "3": { + "rtt": 42.671, + "ip_address": "209.85.248.60", + "host_name": "209.85.248.60" + } + } + }, + "7": { + "probes": { + "1": { + "rtt": 65.392, + "ip_address": "216.239.40.11", + "host_name": "216.239.40.11" + }, + "2": { + "rtt": 65.163, + "ip_address": "209.85.142.185", + "host_name": "209.85.142.185" + }, + "3": { + "rtt": 66.382, + "ip_address": "216.239.40.13", + "host_name": "216.239.40.13" + } + } + }, + "8": { + "probes": { + "1": { + "rtt": 54.821, + "ip_address": "216.239.41.7", + "host_name": "216.239.41.7" + }, + "2": { + "rtt": 68.091, + "ip_address": "209.85.245.58", + "host_name": "209.85.245.58" + }, + "3": { + "rtt": 55.445, + "ip_address": "209.85.246.249", + "host_name": "209.85.246.249" + } + } + }, + "9": { + "probes": { + "1": { + "rtt": 80.656, + "ip_address": "209.85.250.103", + "host_name": "209.85.250.103" + }, + "2": { + "rtt": 79.578, + "ip_address": "209.85.243.218", + "host_name": "209.85.243.218" + }, + "3": { + "rtt": 81.107, + "ip_address": "209.85.243.21", + "host_name": "209.85.243.21" + } + } + }, + "10": { + "probes": { + "1": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + }, + "2": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + }, + "3": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + } + } + }, + "11": { + "probes": { + "1": { + "rtt": 81.639, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + }, + "2": { + "rtt": 80.51, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + }, + "3": { + "rtt": 81.349, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + } + } + } + } +} diff --git a/test_base/nxos/mocked_data/test_traceroute/normal/traceroute_8.8.8.8_.json b/test_base/nxos/mocked_data/test_traceroute/normal/traceroute_8.8.8.8_.json new file mode 100644 index 000000000..d0a027050 --- /dev/null +++ b/test_base/nxos/mocked_data/test_traceroute/normal/traceroute_8.8.8.8_.json @@ -0,0 +1,17 @@ + 1 162.158.136.17 (162.158.136.17) 0.743 ms 0.838 ms 0.876 ms + 2 120.28.9.249 (120.28.9.249) 1.485 ms 1.32 ms 1.289 ms + 3 120.28.10.210 (120.28.10.210) 4.087 ms 120.28.10.110 (120.28.10.110) 2.244 ms 2.208 ms + 4 120.28.10.26 (120.28.10.26) 20.469 ms 19.851 ms 19.707 ms + 5 72.14.196.29 (72.14.196.29) 63.815 ms 64.007 ms 63.643 ms + 6 209.85.248.60 (209.85.248.60) 42.586 ms 209.85.248.62 (209.85.248.62) 42.935 ms 209.85.248.60 (209.85.248.60) 42.671 ms + 7 216.239.40.11 (216.239.40.11) 65.392 ms 209.85.142.185 (209.85.142.185) 65.163 ms 216.239.40.13 (216.239.40.13) 66.382 ms + [Label=450492 E=4 TTL=1 S=1] + [Label=24923 E=4 TTL=1 S=1] + [Label=429804 E=4 TTL=1 S=1] + 8 216.239.41.7 (216.239.41.7) 54.821 ms 209.85.245.58 (209.85.245.58) 68.091 ms 209.85.246.249 (209.85.246.249) 55.445 ms + [Label=26613 E=4 TTL=1 S=1] + [No MPLS labels] + [Label=407253 E=4 TTL=1 S=1] + 9 209.85.250.103 (209.85.250.103) 80.656 ms 209.85.243.218 (209.85.243.218) 79.578 ms 209.85.243.21 (209.85.243.21) 81.107 ms +10 * * * +11 8.8.8.8 (8.8.8.8) 81.639 ms 80.51 ms 81.349 ms diff --git a/test_base/nxos/nxos/initial.conf b/test_base/nxos/nxos/initial.conf new file mode 100644 index 000000000..49a9f79dc --- /dev/null +++ b/test_base/nxos/nxos/initial.conf @@ -0,0 +1,1130 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Wed Dec 14 13:55:40 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine2 +vdc nxos-spine2 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.72/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + ip address 4.3.2.1/24 + no shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos/nxos/merge_good.conf b/test_base/nxos/nxos/merge_good.conf new file mode 100644 index 000000000..3b6de61a6 --- /dev/null +++ b/test_base/nxos/nxos/merge_good.conf @@ -0,0 +1,5 @@ +hostname nxos-spine22 +no feature hsrp +feature scp-server +vlan 111 + name NAPALM diff --git a/test_base/nxos/nxos/merge_good.diff b/test_base/nxos/nxos/merge_good.diff new file mode 100644 index 000000000..f239f02ff --- /dev/null +++ b/test_base/nxos/nxos/merge_good.diff @@ -0,0 +1,3 @@ +no vlan 111 +hostname nxos-spine2 +feature hsrp diff --git a/test_base/nxos/nxos/merge_typo.conf b/test_base/nxos/nxos/merge_typo.conf new file mode 100644 index 000000000..5902408a7 --- /dev/null +++ b/test_base/nxos/nxos/merge_typo.conf @@ -0,0 +1,2 @@ +vlan 11111 + name NAPALM diff --git a/test_base/nxos/nxos/new_good.conf b/test_base/nxos/nxos/new_good.conf new file mode 100644 index 000000000..ed8b1121e --- /dev/null +++ b/test_base/nxos/nxos/new_good.conf @@ -0,0 +1,1132 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Wed Dec 14 11:34:03 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine2 +vdc nxos-spine2 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vlan100 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.72/24 + +interface Vlan1 + +interface Ethernet2/1 + switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + ip address 4.3.2.1/24 + shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos/nxos/new_good.diff b/test_base/nxos/nxos/new_good.diff new file mode 100644 index 000000000..aea0059fc --- /dev/null +++ b/test_base/nxos/nxos/new_good.diff @@ -0,0 +1,10 @@ +interface Ethernet2/1 + shutdown + no ip address 4.3.2.1/24 + switchport + exit +interface Ethernet2/1 + switchport + shutdown +exit +no system default switchport shutdown diff --git a/test_base/nxos/nxos/new_typo.conf b/test_base/nxos/nxos/new_typo.conf new file mode 100644 index 000000000..e50447fa8 --- /dev/null +++ b/test_base/nxos/nxos/new_typo.conf @@ -0,0 +1,856 @@ +!Command: Checkpoint cmd vdc 1 +!Time: Fri Nov 13 20:49:31 2015 + +version 7.0(3)I2(1) +hostname n9k1 +class-map type network-qos c-nq1 + description Default class on qos-group 1 +match qos-group 1 +class-map type network-qos c-nq2 + description Default class on qos-group 2 +match qos-group 2 +class-map type network-qos c-nq3 + description Default class on qos-group 3 +match qos-group 3 +class-map type network-qos c-nq-default + description Default class on qos-group 0 +match qos-group 0 +policy-map type network-qos default-nq-policy + class type network-qos c-nq3 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq2 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq1 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq-default + no pause pfc-cos 0 + mtu 1500 +vdc n9k1 id 1 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 248 maximum 248 + limit-resource u6route-mem minimum 96 maximum 96 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature nxapi +feature bash-shell +feature scp-server +!#feature ssh +cfs eth distribute +feature ospf +feature interface-vlan +feature hsrp +feature lacp +feature vpc +feature lldp + +no mac address-table notification mac-move + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +no password strength-check +username admin password 5 $5$QV/nmT13$e7qNNulbvwMZSaLQHkB66X6eXGTjMvvUrQ2wFIVwq02 role network-admin +username cisco password 5 $1$nGd5VWnS$LJ/a9ztNEt6xruMCG2Erl/ role network-admin +ip domain-lookup +ip domain-name cisconxapi.com +ip access-list acl-test + 10 permit ip 1.1.1.1/32 any + 20 permit ip 1.1.1.1/24 any + 30 permit tcp any neq finger any ack psh rst fin + 40 permit tcp 1.1.1.1/32 any + 50 permit tcp 1.1.1.1/32 range time bgp any + 60 permit tcp 1.1.1.1/32 addrgroup ciao + 70 permit tcp addrgroup ciao addrgroup ciao + 80 permit tcp any range www talk any urg log +mac access-list mac_acl_test + 10 permit 000e.000e.000e 000e.000e.000e 00aa.00aa.00aa 00aa.00ae.00ac aarp cos 0 +ip access-list test +ip access-list test-acl +!# qos statistics +!# class-map type queuing match-any c-out-q3 +!# match qos-group 3 +!# class-map type queuing match-any c-out-q2 +!# match qos-group 2 +!# class-map type queuing match-any c-out-q1 +!# match qos-group 1 +!# class-map type queuing match-any c-out-q-default +!# match qos-group 0 +!# class-map type queuing match-any c-in-q3 +!# match qos-group 3 +!# class-map type queuing match-any c-in-q2 +!# match qos-group 2 +!# class-map type queuing match-any c-in-q1 +!# match qos-group 1 +!# class-map type queuing match-any c-in-q-default +!# match qos-group 0 +policy-map type queuing default-out-policy + class type queuing c-out-q3 + priority level 1 + class type queuing c-out-q2 + bandwidth remaining percent 0 + class type queuing c-out-q1 + bandwidth remaining percent 0 + class type queuing c-out-q-default + bandwidth remaining percent 100 +copp profile strict +no system mode maintenance +snmp-server source-interface trap port-channel10 +snmp-server source-interface inform port-channel10 +snmp-server user admin network-admin auth md5 0xb38774329b48afb669c81b39ef5073d0 priv 0xb38774329b48afb669c81b39ef5073d0 localizedkey +snmp-server host 192.0.2.1 traps version 2c MYSTRING +snmp-server host 192.0.100.1 traps version 2c two +snmp-server host 192.0.100.1 source-interface mgmt0 +snmp-server host 1.1.1.1 informs version 3 auth JEDELMAN +rmon event 1 log trap public description FATAL(1) owner PMON@FATAL +rmon event 2 log trap public description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log trap public description ERROR(3) owner PMON@ERROR +rmon event 4 log trap public description WARNING(4) owner PMON@WARNING +rmon event 5 log trap public description INFORMATION(5) owner PMON@INFO +snmp-server enable traps callhome event-notify +snmp-server enable traps callhome smtp-send-fail +snmp-server enable traps cfs state-change-notif +snmp-server enable traps lldp lldpRemTablesChange +snmp-server enable traps cfs merge-failure +snmp-server enable traps aaa server-state-change +snmp-server enable traps hsrp state-change +snmp-server enable traps feature-control FeatureOpStatusChange +snmp-server enable traps sysmgr cseFailSwCoreNotifyExtended +snmp-server enable traps config ccmCLIRunningConfigChanged +snmp-server enable traps snmp authentication +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server enable traps vtp notifs +snmp-server enable traps vtp vlancreate +snmp-server enable traps vtp vlandelete +snmp-server enable traps bridge newroot +snmp-server enable traps storm-control +snmp-server enable traps bridge topologychange +snmp-server enable traps stpx inconsistency +snmp-server enable traps stpx root-inconsistency +snmp-server enable traps stpx loop-inconsistency +snmp-server enable traps system Clock-change-notification +snmp-server enable traps feature-control ciscoFeatOpStatusChange +snmp-server context T3sT-Con_text +snmp-server context T3sT-Con_text!!!! +snmp-server context C0n_text! +snmp-server community WEWORK group network-operator +snmp-server community Community_test-1 group network-operator +snmp-server community RW group network-admin +snmp-server community networktocode group network-operator +snmp-server community YANKS group network-admin +snmp-server community _Community_test-2 group network-operator +snmp-server mib community-map Community_test-1 context C0n_text! +snmp-server community Community_test-1 use-acl T3st-ACL#$ +snmp-server community YANKS use-acl my_acl +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +ip route 0.0.0.0/0 10.1.100.1 vrf management +ip route 7.7.7.7/32 10.10.50.1 +vlan 1 +vlan 10 + name WEB_VLAN +vlan 11 + name vlan_11 +vlan 12 + name vlan_12 +vlan 20 + name DB_VLAN +vlan 30 +vlan 40 +vlan 50 +vlan 110 +vlan 120 + name w*$$eb_vlan +vlan 256 + name flask_vlan +vlan 2000 +vlan 3000 + +vrf context keepalive +vrf context management + ip domain-name cisconxapi.com + ip name-server 8.8.8.8 + ip route 0.0.0.0/0 10.1.100.1 +vpc domain 100 + role priority 1000 + system-priority 2000 + peer-keepalive destination 10.1.20.3 source 10.1.20.2 vrf keepalive + +interface Vlan1 + +interface Vlan5 + no shutdown + ip router ospf 10 area 0.0.0.5 + +interface Vlan10 + no shutdown + ip address 10.1.10.2/24 + hsrp version 2 + hsrp 10 + priority 120 forwarding-threshold lower 1 upper 120 + ip 10.1.10.1 + +interface Vlan20 + no shutdown + vrf member keepalive + ip address 10.1.20.2/24 + hsrp version 2 + hsrp 20 + priority 120 forwarding-threshold lower 1 upper 120 + ip 10.1.20.1 + +interface Vlan66 + ip address 66.66.66.66/24 + +interface Vlan77 + ip address 77.77.77.77/24 + +interface Vlan146 + description my vlan 146 + +interface port-channel10 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface port-channel11 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface port-channel12 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + spanning-tree port type network + !#logging event port link-status default + !#logging event port trunk-status default + vpc peer-link + !#no shutdown + +interface Ethernet1/1 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/2 + no switchport + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + ip address 192.168.56.1/24 + no shutdown + +interface Ethernet1/3 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/4 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/5 + no switchport + priority-flow-control mode auto + !#switchport trunk allowed vlan 1-4094 + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/6 + !#no switchport + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/7 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/8 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/9 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/10 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + +interface Ethernet1/11 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/12 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/13 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/14 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/15 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/16 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/17 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/18 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/19 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/20 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/21 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/22 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/23 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/24 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/25 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/26 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/27 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/28 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/29 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/30 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/31 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/32 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/33 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/34 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/35 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/36 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/37 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/38 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/39 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/40 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/41 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/42 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/43 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/44 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/45 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/46 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/47 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/48 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet2/1 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.10.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/2 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.30.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/3 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.20.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/4 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.40.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/5 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + channel-group 12 force mode active + !#no shutdown + +interface Ethernet2/6 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + channel-group 12 force mode active + !#no shutdown + +interface Ethernet2/7 + description matched n9k1.ntc.com + !#shutdown + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + vrf member test + ip address 192.168.55.58/24 + +interface Ethernet2/8 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/9 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/10 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/11 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + +interface Ethernet2/12 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + +interface mgmt0 + vrf member management + ip address 10.1.100.20/24 + +interface loopback0 + ip address 1.3.1.1/24 + !#no shutdown + +interface loopback10 + ip address 1.1.1.1/32 + ip router ospf 10 area 0.0.0.5 + !#no shutdown +line console +line vty + session-limit 16 + exec-timeout 0 +boot nxos bootflash:/nxos.7.0.3.I2.1.bin +router ospf 1 +router ospf myospf +mac address-table static 000e.000e.000e vlan 10 drop +no xml server exec-mode +!#logging monitor +!#logging module +!#logging console diff --git a/test_base/nxos/test_getters.py b/test_base/nxos/test_getters.py new file mode 100644 index 000000000..21af8bae3 --- /dev/null +++ b/test_base/nxos/test_getters.py @@ -0,0 +1,28 @@ +"""Tests for getters.""" + +from napalm.base.test.getters import BaseTestGetters, wrap_test_cases +from napalm.base.test import helpers +from napalm.base.test import models + +import pytest +from mock import patch + + +def mock_time(): + return 1500000000.000000 + + +@pytest.mark.usefixtures("set_device_parameters") +class TestGetter(BaseTestGetters): + """Test get_* methods.""" + @patch('time.time', mock_time) + @wrap_test_cases + def test_get_interfaces(self, test_case): + """Test get_interfaces.""" + get_interfaces = self.device.get_interfaces() + assert len(get_interfaces) > 0 + + for interface, interface_data in get_interfaces.items(): + assert helpers.test_model(models.interface, interface_data) + + return get_interfaces diff --git a/test_base/nxos/utils/textfsm_templates/lldp_neighbors.tpl b/test_base/nxos/utils/textfsm_templates/lldp_neighbors.tpl new file mode 100644 index 000000000..77f55ad2a --- /dev/null +++ b/test_base/nxos/utils/textfsm_templates/lldp_neighbors.tpl @@ -0,0 +1,9 @@ +Value NEIGHBOR (\S+) +Value LOCAL_INTERFACE (\S+) +Value NEIGHBOR_INTERFACE (\S+) + +Start + ^Device.*ID -> LLDP + +LLDP + ^${NEIGHBOR}\s+${LOCAL_INTERFACE}\s+\d+\s+[\w+\s]+\S+\s+${NEIGHBOR_INTERFACE} -> Record diff --git a/test_base/nxos/utils/textfsm_templates/snmp_config.tpl b/test_base/nxos/utils/textfsm_templates/snmp_config.tpl new file mode 100644 index 000000000..aa070fd53 --- /dev/null +++ b/test_base/nxos/utils/textfsm_templates/snmp_config.tpl @@ -0,0 +1,10 @@ +Value Location (.*) +Value Contact (.*) +Value Community (\S+) +Value Mode (network\-admin|network\-operator) +Value ACL (\S+) + +Start + ^snmp-server\slocation\s${Location} -> Record + ^snmp-server\scontact\s${Contact} -> Record + ^snmp-server\scommunity\s${Community}\s((group\s+${Mode}|use\-.+\s+${ACL})) -> Next.Record diff --git a/test_base/nxos/utils/textfsm_templates/users.tpl b/test_base/nxos/utils/textfsm_templates/users.tpl new file mode 100644 index 000000000..141fd5df3 --- /dev/null +++ b/test_base/nxos/utils/textfsm_templates/users.tpl @@ -0,0 +1,13 @@ +Value Username (\w+.*) +Value Password (.*) +Value Role (\w+.*) +Value SSHKeyType (ssh-rsa|ssh-dsa) +Value SSHKeyValue (\w+.*) + + +Start + ^username\s+${Username}\s+password\s+\d+\s+${Password}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+sshkey\s+${SSHKeyType}\s+${SSHKeyValue} -> Record + +EOF diff --git a/test_base/nxos_ssh/TestDriver.py b/test_base/nxos_ssh/TestDriver.py new file mode 100644 index 000000000..1f97ea4cc --- /dev/null +++ b/test_base/nxos_ssh/TestDriver.py @@ -0,0 +1,34 @@ +# Copyright 2015 Spotify AB. All rights reserved. +# +# The contents of this file are licensed under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. + +import unittest + +from napalm.nxos import nxos +from napalm.base.test.base import TestConfigNetworkDriver + + +class TestConfigNXOSDriver(unittest.TestCase, TestConfigNetworkDriver): + + @classmethod + def setUpClass(cls): + hostname = '127.0.0.1' + username = 'vagrant' + password = 'vagrant' + cls.vendor = 'nxos' + + cls.device = nxos.NXOSDriver(hostname, username, password) + cls.device.open() + + cls.device.load_replace_candidate(filename='%s/initial.conf' % cls.vendor) + cls.device.commit_config() diff --git a/test_base/nxos_ssh/__init__.py b/test_base/nxos_ssh/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/test_base/nxos_ssh/conftest.py b/test_base/nxos_ssh/conftest.py new file mode 100644 index 000000000..8a55bada6 --- /dev/null +++ b/test_base/nxos_ssh/conftest.py @@ -0,0 +1,58 @@ +"""Test fixtures.""" +from builtins import super + +import pytest +from napalm.base.test import conftest as parent_conftest +from napalm.base.test.double import BaseTestDouble +from napalm.base.utils import py23_compat + +from napalm.nxos_ssh import nxos_ssh + + +@pytest.fixture(scope='class') +def set_device_parameters(request): + """Set up the class.""" + def fin(): + request.cls.device.close() + request.addfinalizer(fin) + + request.cls.driver = nxos_ssh.NXOSSSHDriver + request.cls.patched_driver = PatchedNXOSSSHDriver + request.cls.vendor = 'nxos_ssh' + parent_conftest.set_device_parameters(request) + + +def pytest_generate_tests(metafunc): + """Generate test cases dynamically.""" + parent_conftest.pytest_generate_tests(metafunc, __file__) + + +class PatchedNXOSSSHDriver(nxos_ssh.NXOSSSHDriver): + """Patched NXOS Driver.""" + def __init__(self, hostname, username, password, timeout=60, optional_args=None): + super().__init__(hostname, username, password, timeout, optional_args) + self.patched_attrs = ['device'] + self.device = FakeNXOSSSHDevice() + + def disconnect(self): + pass + + def is_alive(self): + return { + 'is_alive': True # In testing everything works.. + } + + def open(self): + pass + + +class FakeNXOSSSHDevice(BaseTestDouble): + """NXOS device test double.""" + def send_command(self, command, **kwargs): + filename = '{}.txt'.format(self.sanitize_text(command)) + full_path = self.find_file(filename) + result = self.read_txt_file(full_path) + return py23_compat.text_type(result) + + def disconnect(self): + pass diff --git a/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/expected_result.json new file mode 100644 index 000000000..415ba7f15 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/expected_result.json @@ -0,0 +1,14 @@ +[ + { + "interface": "mgmt0", + "ip": "10.0.0.2", + "mac": "2C:C2:60:FF:00:21", + "age": 4.0 + }, + { + "interface": "mgmt0", + "ip": "10.0.0.72", + "mac": "2C:C2:60:36:32:21", + "age": 140.0 + } +] diff --git a/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/show_ip_arp_vrf_default___exc_INCOMPLETE.txt b/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/show_ip_arp_vrf_default___exc_INCOMPLETE.txt new file mode 100644 index 000000000..8569db0f1 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_arp_table/normal/show_ip_arp_vrf_default___exc_INCOMPLETE.txt @@ -0,0 +1,11 @@ + +Flags: * - Adjacencies learnt on non-active FHRP router + + - Adjacencies synced via CFSoE + # - Adjacencies Throttled for Glean + D - Static Adjacencies attached to down interface + +IP ARP Table for context default +Total number of entries: 2 +Address Age MAC Address Interface +10.0.0.2 00:00:04 2cc2.60ff.0021 mgmt0 +10.0.0.72 00:02:20 2cc2.6036.3221 mgmt0 diff --git a/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/expected_result.json new file mode 100644 index 000000000..a288df6fe --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/expected_result.json @@ -0,0 +1,32 @@ +[ + { + "interface": "mgmt0", + "ip": "10.0.0.2", + "mac": "2C:C2:60:FF:00:21", + "age": 4.0 + }, + { + "interface": "mgmt0", + "ip": "10.0.0.72", + "mac": "2C:C2:60:36:32:21", + "age": 140.0 + }, + { + "interface": "Vlan357", + "ip": "10.5.159.59", + "mac": "00:50:56:14:44:BE", + "age": 590.0 + }, + { + "interface": "Vlan357", + "ip": "10.5.159.78", + "mac": "00:50:56:14:2F:2A", + "age": 0.3 + }, + { + "interface": "Vlan357", + "ip": "10.5.159.79", + "mac": "00:50:56:14:2F:2A", + "age": 851.0 + } +] diff --git a/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/show_ip_arp_vrf_default___exc_INCOMPLETE.txt b/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/show_ip_arp_vrf_default___exc_INCOMPLETE.txt new file mode 100644 index 000000000..ad8552028 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_arp_table/sub_second_entry/show_ip_arp_vrf_default___exc_INCOMPLETE.txt @@ -0,0 +1,14 @@ + +Flags: * - Adjacencies learnt on non-active FHRP router + + - Adjacencies synced via CFSoE + # - Adjacencies Throttled for Glean + D - Static Adjacencies attached to down interface + +IP ARP Table for context default +Total number of entries: 2 +Address Age MAC Address Interface +10.0.0.2 00:00:04 2cc2.60ff.0021 mgmt0 +10.0.0.72 00:02:20 2cc2.6036.3221 mgmt0 +10.5.159.59 00:09:50 0050.5614.44be Vlan357 +10.5.159.78 0.282854 0050.5614.2f2a Vlan357 +10.5.159.79 00:14:11 0050.5614.2f2a Vlan357 diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/expected_result.json new file mode 100644 index 000000000..5e1c78cea --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/expected_result.json @@ -0,0 +1,145 @@ +{ + "RED3": { + "router_id": "10.1.0.18", + "peers": { + "2001:db8:4:701::2": { + "is_enabled": true, + "uptime": 1987200, + "remote_as": 65535, + "address_family": { + "ipv6": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 3 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + }, + "2001:db8:e0:df::1": { + "is_enabled": true, + "uptime": 1900800, + "remote_as": 10, + "address_family": { + "ipv6": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 4 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + }, + "2001:db8:e0:dd::1": { + "is_enabled": true, + "uptime": 1900800, + "remote_as": 10, + "address_family": { + "ipv6": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 4 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + } + } + }, + "RED2": { + "router_id": "10.1.0.17", + "peers": { + "10.1.12.22": { + "is_enabled": true, + "uptime": 1900800, + "remote_as": 10, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 1 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + }, + "10.2.2.1": { + "is_enabled": true, + "uptime": 1900800, + "remote_as": 10, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 15 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + }, + "10.1.0.2": { + "is_enabled": true, + "uptime": 1987200, + "remote_as": 65535, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 6 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + } + } + }, + "global": { + "router_id": "10.1.0.16", + "peers": { + "10.2.1.14": { + "is_enabled": true, + "uptime": 1900800, + "remote_as": 10, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 9 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + }, + "10.1.0.1": { + "is_enabled": true, + "uptime": 14083200, + "remote_as": 65535, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": 4 + } + }, + "is_up": true, + "remote_id": "0.0.0.0", + "local_as": 65535, + "description": "" + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/show_bgp_all_summary_vrf_all.txt b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/show_bgp_all_summary_vrf_all.txt new file mode 100644 index 000000000..e7f63f660 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/multiple_vrfs_ipv6/show_bgp_all_summary_vrf_all.txt @@ -0,0 +1,61 @@ +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 10.1.0.16, local AS number 65535 +BGP table version is 361, IPv4 Unicast config peers 2, capable peers 2 +13 network entries and 17 paths using 2224 bytes of memory +BGP attribute entries [4/576], BGP AS path entries [1/14] +BGP community entries [295/10792], BGP clusterlist entries [0/0] +13 received paths for inbound soft reconfiguration +4 identical, 9 modified, 0 filtered received paths using 72 bytes + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.1.14 4 10 472516 472238 361 0 0 3w1d 9 +10.1.0.1 4 65535 242485 242487 361 0 0 23w2d 4 + +BGP summary information for VRF RED1, address family IPv6 Unicast + +BGP summary information for VRF RED2, address family IPv4 Unicast +BGP router identifier 10.1.0.17, local AS number 65535 +BGP table version is 8757, IPv4 Unicast config peers 3, capable peers 3 +59 network entries and 28 paths using 5768 bytes of memory +BGP attribute entries [11/1584], BGP AS path entries [5/54] +BGP community entries [295/10792], BGP clusterlist entries [0/0] +65 received paths for inbound soft reconfiguration +6 identical, 16 modified, 43 filtered received paths using 2536 bytes + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.1 4 10 477087 472247 8757 0 0 3w1d 15 +10.1.0.2 4 65535 34423 34483 8757 0 0 3w2d 6 +10.1.12.22 4 10 472430 472238 8757 0 0 3w1d 1 + +BGP summary information for VRF RED2, address family IPv6 Unicast + +BGP summary information for VRF RED3, address family IPv4 Unicast +BGP router identifier 10.1.0.18, local AS number 65535 +BGP table version is 8985, IPv4 Unicast config peers 3, capable peers 3 +84 network entries and 41 paths using 8312 bytes of memory +BGP attribute entries [18/2592], BGP AS path entries [7/78] +BGP community entries [295/10792], BGP clusterlist entries [0/0] +91 received paths for inbound soft reconfiguration +14 identical, 20 modified, 57 filtered received paths using 3352 bytes + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +10.2.2.12 4 10 472652 472216 8985 0 0 3w1d 5 +10.2.2.13 4 10 477090 472246 8985 0 0 3w1d 15 +10.1.0.3 4 65535 34418 34466 8985 0 0 3w2d 7 + +BGP summary information for VRF RED3, address family IPv6 Unicast +BGP router identifier 10.1.0.18, local AS number 65535 +BGP table version is 145, IPv6 Unicast config peers 3, capable peers 3 +12 network entries and 15 paths using 2136 bytes of memory +BGP attribute entries [16/2304], BGP AS path entries [6/72] +BGP community entries [295/10792], BGP clusterlist entries [0/0] +11 received paths for inbound soft reconfiguration +3 identical, 8 modified, 0 filtered received paths using 64 bytes + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +2001:db8:4:701::2 + 4 65535 163664 163693 145 0 0 3w2d 3 +2001:db8:e0:dd::1 + 4 10 327491 327278 145 0 0 3w1d 4 +2001:db8:e0:df::1 + 4 10 327465 327268 145 0 0 3w1d 4 diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/expected_result.json new file mode 100644 index 000000000..18f15649e --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/expected_result.json @@ -0,0 +1,23 @@ +{ + "global": { + "router_id": "0.0.0.0", + "peers": { + "1.1.1.1": { + "is_enabled": true, + "uptime": -1, + "local_as": 22, + "remote_as": 33, + "remote_id": "0.0.0.0", + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + }, + "is_up": false, + "description": "" + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_all_summary_vrf_all.txt b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_all_summary_vrf_all.txt new file mode 100644 index 000000000..9b5c38321 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_all_summary_vrf_all.txt @@ -0,0 +1,11 @@ +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 0.0.0.0, local AS number 22 +BGP table version is 12, IPv4 Unicast config peers 1, capable peers 0 +0 network entries and 0 paths using 0 bytes of memory +BGP attribute entries [0/0], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +1.1.1.1 4 33 0 0 0 0 0 4d22h Idle + +BGP summary information for VRF default, address family IPv6 Unicast diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.txt b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.txt new file mode 100644 index 000000000..399269840 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal/show_bgp_sessions_vrf_all.txt @@ -0,0 +1,7 @@ +Total peers 1, established peers 1 +ASN 22 +VRF default, local ASN 22 +peers 1, established peers 1, local router-id 1.1.2.225 +State: I-Idle, A-Active, O-Open, E-Established, C-Closing, S-Shutdown +Neighbor ASN Flaps LastUpDn|LastRead|LastWrit St Port(L/R) Notif(S/R) +10.100.17.2 22 4 09:43:55|00:00:48|00:00:45 E 179/47720 2/2 diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/expected_result.json new file mode 100644 index 000000000..6a942b4c4 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/expected_result.json @@ -0,0 +1,23 @@ +{ + "global": { + "router_id": "0.0.0.0", + "peers": { + "1.1.1.1": { + "is_enabled": false, + "uptime": -1, + "remote_as": 33, + "address_family": { + "ipv4": { + "sent_prefixes": -1, + "accepted_prefixes": -1, + "received_prefixes": -1 + } + }, + "is_up": false, + "remote_id": "0.0.0.0", + "local_as": 22, + "description": "" + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/show_bgp_all_summary_vrf_all.txt b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/show_bgp_all_summary_vrf_all.txt new file mode 100644 index 000000000..0a3adc9f8 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_bgp_neighbors/normal_down/show_bgp_all_summary_vrf_all.txt @@ -0,0 +1,11 @@ +BGP summary information for VRF default, address family IPv4 Unicast +BGP router identifier 0.0.0.0, local AS number 22 +BGP table version is 12, IPv4 Unicast config peers 1, capable peers 0 +0 network entries and 0 paths using 0 bytes of memory +BGP attribute entries [0/0], BGP AS path entries [0/0] +BGP community entries [0/0], BGP clusterlist entries [0/0] + +Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd +1.1.1.1 4 33 0 0 0 0 0 4d22h Shut (Admin) + +BGP summary information for VRF default, address family IPv6 Unicast diff --git a/test_base/nxos_ssh/mocked_data/test_get_config/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_config/normal/expected_result.json new file mode 100644 index 000000000..9b2d8dec3 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config/normal/expected_result.json @@ -0,0 +1 @@ +{"running": "!Command: show running-config\n!Time: Sun Aug 6 16:43:18 2017\nversion 7.3(1)D1(1)\npower redundancy-mode redundant\nlicense grace-period\nhostname nxos1\nvdc nxos1 id 1\n limit-resource module-type m1 m1xl m2xl f2e \n allocate interface Ethernet2/1-48\n allocate interface Ethernet3/1-48\n allocate interface Ethernet4/1-48\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 768\n limit-resource u4route-mem minimum 96 maximum 96\n limit-resource u6route-mem minimum 24 maximum 24\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\nfeature telnet\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\nfeature nxapi\nusername admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin\nusername pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin\nusername pyclass passphrase lifetime 99999 warntime 14 gracetime 3\nno password strength-check\nip domain-lookup\nip domain-name madeupdomain.com\nip name-server 8.8.8.8 8.8.4.4\nvlan dot1Q tag native\nsystem default switchport\nsystem jumbomtu 0\nno logging event trunk-status enable\ncopp profile strict\nsnmp-server contact Kirk Byers\nsnmp-server location Freemont, CA\nsnmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey\nsnmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60\nrmon event 1 log description FATAL(1) owner PMON@FATAL\nrmon event 2 log description CRITICAL(2) owner PMON@CRITICAL\nrmon event 3 log description ERROR(3) owner PMON@ERROR\nrmon event 4 log description WARNING(4) owner PMON@WARNING\nrmon event 5 log description INFORMATION(5) owner PMON@INFO\nsnmp-server enable traps link\nsnmp-server community bogus123 group network-operator\nntp server 130.126.24.24\nntp server 152.2.21.1\nvlan 1,301-304,550-552,559\nvlan 301\n name BLUE_DIAMOND\nvlan 302\n name RED_DIAMOND\nvlan 303\n name GREEN_DIAMOND\nvlan 304\n name YELLOW_DIAMOND\nvlan 550\n name BLACK\nvlan 551\n name ORANGE\nvlan 552\n name PINK\nvlan 559\n name BROWN\nvrf context management\n ip route 0.0.0.0/0 10.0.0.2\ninterface mgmt0\n vrf member management\n ip address 10.0.0.71/24\ninterface Vlan1\ninterface Ethernet2/1\n no switchport\n mac-address 2cc2.604f.feb2\n ip address 10.10.10.10/24\n no shutdown\ninterface Ethernet2/2\n no switchport\n mac-address 2cc2.604f.feb2\n ip address 10.100.100.1/24\n ipv6 address 2001::db8:1010:200c:1/64\n no shutdown\ninterface Ethernet2/3\n no switchport\n mac-address 2cc2.604f.feb2\n no shutdown\ninterface Ethernet2/4\n no switchport\n mac-address 2cc2.604f.feb2\n ip address 10.100.17.1/24\n no shutdown\ninterface Ethernet2/5\n no switchport\n mac-address 2cc2.604f.feb2\n no shutdown\ninterface Ethernet2/6\n no switchport\n mac-address 2cc2.604f.feb2\n no shutdown\ninterface Ethernet2/7\n no switchport\n mac-address 2cc2.604f.feb2\n no shutdown\ninterface Ethernet2/8\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/9\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/10\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/11\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/12\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/13\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/14\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/15\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/16\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/17\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/18\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/19\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/20\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/21\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/22\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/23\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/24\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/25\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/26\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/27\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/28\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/29\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/30\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/31\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/32\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/33\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/34\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/35\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/36\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/37\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/38\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/39\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/40\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/41\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/42\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/43\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/44\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/45\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/46\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/47\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet2/48\n shutdown\n no switchport\n mac-address 2cc2.604f.feb2\ninterface Ethernet3/1\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/2\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/3\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/4\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/5\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/6\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/7\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/8\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/9\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/10\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/11\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/12\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/13\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/14\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/15\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/16\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/17\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/18\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/19\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/20\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/21\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/22\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/23\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/24\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/25\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/26\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/27\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/28\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/29\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/30\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/31\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/32\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/33\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/34\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/35\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/36\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/37\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/38\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/39\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/40\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/41\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/42\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/43\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/44\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/45\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/46\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/47\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet3/48\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/1\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/2\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/3\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/4\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/5\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/6\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/7\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/8\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/9\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/10\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/11\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/12\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/13\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/14\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/15\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/16\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/17\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/18\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/19\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/20\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/21\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/22\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/23\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/24\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/25\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/26\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/27\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/28\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/29\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/30\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/31\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/32\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/33\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/34\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/35\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/36\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/37\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/38\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/39\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/40\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/41\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/42\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/43\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/44\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/45\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/46\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/47\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface Ethernet4/48\n shutdown\n no switchport\n mac-address 000c.29d1.d56b\ninterface loopback0\n ip address 1.1.2.225/32\n ipv6 address 2001:db8::225/64\ninterface loopback55\n ip address 1.1.1.37/24\n ipv6 address 2001:db8::37/32\nline console\nline vty\nboot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin\nboot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin \nrouter bgp 22\n neighbor 10.100.17.2 remote-as 22\n address-family ipv4 unicast\nno system default switchport shutdown\nnxapi https port 8443\nnxapi sandbox\nlogging module 4\nlogging monitor 4\nno logging console\nlogging history size 400\n", "startup": "!Command: show startup-config\n!Time: Sun Aug 6 17:36:54 2017\n!Startup config saved at: Sun Aug 6 15:32:43 2017\nversion 7.3(1)D1(1)\npower redundancy-mode redundant\nlicense grace-period\nhostname nxos1\nvdc nxos1 id 1\n limit-resource module-type m1 m1xl m2xl f2e \n allocate interface Ethernet2/1-48\n allocate interface Ethernet3/1-48\n allocate interface Ethernet4/1-48\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 768\n limit-resource u4route-mem minimum 96 maximum 96\n limit-resource u6route-mem minimum 24 maximum 24\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\nfeature telnet\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\nfeature nxapi\nusername admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin\nusername pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin\nusername pyclass passphrase lifetime 99999 warntime 14 gracetime 3\nno password strength-check\nip domain-lookup\nip domain-name madeupdomain.com\nip name-server 8.8.8.8 8.8.4.4\nvlan dot1Q tag native\nsystem default switchport\nsystem jumbomtu 0\nno logging event trunk-status enable\ncopp profile strict\nsnmp-server contact Test\nsnmp-server location Test\nsnmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey\nsnmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60\nrmon event 1 log description FATAL(1) owner PMON@FATAL\nrmon event 2 log description CRITICAL(2) owner PMON@CRITICAL\nrmon event 3 log description ERROR(3) owner PMON@ERROR\nrmon event 4 log description WARNING(4) owner PMON@WARNING\nrmon event 5 log description INFORMATION(5) owner PMON@INFO\nsnmp-server enable traps link\nsnmp-server community networktocode group network-operator\nntp server 130.126.24.24\nntp server 152.2.21.1\nvlan 1,301-304,550-552,559\nvlan 301\n name BLUE_DIAMOND\nvlan 302\n name RED_DIAMOND\nvlan 303\n name GREEN_DIAMOND\nvlan 304\n name YELLOW_DIAMOND\nvlan 550\n name BLACK\nvlan 551\n name ORANGE\nvlan 552\n name PINK\nvlan 559\n name BROWN\nvrf context management\n ip route 0.0.0.0/0 10.0.0.2\ninterface mgmt0\n vrf member management\n ip address 10.0.0.71/24\ninterface Vlan1\ninterface Ethernet2/1\n no switchport\n mac-address 2cc2.605e.5de8\n ip address 10.10.10.10/24\n no shutdown\ninterface Ethernet2/2\n no switchport\n mac-address 2cc2.605e.5de8\n ip address 10.100.100.1/24\n ipv6 address 2001::db8:1010:200c:1/64\n no shutdown\ninterface Ethernet2/3\n no switchport\n mac-address 2cc2.605e.5de8\n no shutdown\ninterface Ethernet2/4\n no switchport\n mac-address 2cc2.605e.5de8\n ip address 10.100.17.1/24\n no shutdown\ninterface Ethernet2/5\n no switchport\n mac-address 2cc2.605e.5de8\n no shutdown\ninterface Ethernet2/6\n no switchport\n mac-address 2cc2.605e.5de8\n no shutdown\ninterface Ethernet2/7\n no switchport\n mac-address 2cc2.605e.5de8\n no shutdown\ninterface Ethernet2/8\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/9\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/10\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/11\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/12\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/13\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/14\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/15\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/16\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/17\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/18\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/19\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/20\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/21\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/22\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/23\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/24\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/25\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/26\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/27\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/28\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/29\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/30\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/31\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/32\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/33\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/34\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/35\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/36\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/37\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/38\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/39\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/40\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/41\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/42\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/43\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/44\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/45\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/46\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/47\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet2/48\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/1\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/2\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/3\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/4\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/5\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/6\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/7\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/8\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/9\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/10\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/11\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/12\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/13\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/14\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/15\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/16\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/17\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/18\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/19\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/20\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/21\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/22\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/23\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/24\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/25\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/26\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/27\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/28\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/29\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/30\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/31\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/32\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/33\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/34\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/35\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/36\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/37\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/38\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/39\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/40\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/41\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/42\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/43\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/44\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/45\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/46\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/47\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet3/48\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/1\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/2\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/3\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/4\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/5\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/6\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/7\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/8\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/9\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/10\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/11\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/12\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/13\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/14\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/15\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/16\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/17\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/18\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/19\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/20\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/21\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/22\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/23\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/24\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/25\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/26\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/27\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/28\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/29\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/30\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/31\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/32\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/33\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/34\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/35\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/36\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/37\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/38\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/39\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/40\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/41\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/42\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/43\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/44\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/45\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/46\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/47\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface Ethernet4/48\n shutdown\n no switchport\n mac-address 2cc2.605e.5de8\ninterface loopback0\n ip address 1.1.2.225/32\n ipv6 address 2001:db8::225/64\ninterface loopback55\n ip address 1.1.1.37/24\n ipv6 address 2001:db8::37/32\nline console\nline vty\nboot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin\nboot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin \nrouter bgp 22\n neighbor 10.100.17.2 remote-as 22\n address-family ipv4 unicast\nno system default switchport shutdown\nnxapi https port 8443\nnxapi sandbox\nlogging module 4\nlogging monitor 4\nno logging console\nlogging history size 400\n", "candidate": ""} diff --git a/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_running_config.txt b/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_running_config.txt new file mode 100644 index 000000000..8a011a6cd --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_running_config.txt @@ -0,0 +1,675 @@ +!Command: show running-config +!Time: Sun Aug 6 16:43:18 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Kirk Byers +snmp-server location Freemont, CA +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community bogus123 group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_startup_config.txt b/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_startup_config.txt new file mode 100644 index 000000000..e7a23d430 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config/normal/show_startup_config.txt @@ -0,0 +1,676 @@ +!Command: show startup-config +!Time: Sun Aug 6 17:36:54 2017 +!Startup config saved at: Sun Aug 6 15:32:43 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Test +snmp-server location Test +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community networktocode group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/1 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/2 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/3 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/4 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/5 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/6 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/7 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/1 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/2 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/3 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/4 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/5 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/6 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/7 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/expected_result.json new file mode 100644 index 000000000..c162bbc99 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/expected_result.json @@ -0,0 +1 @@ +{"running": "", "startup": "", "candidate": ""} diff --git a/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_running_config.txt b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_running_config.txt new file mode 100644 index 000000000..8a011a6cd --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_running_config.txt @@ -0,0 +1,675 @@ +!Command: show running-config +!Time: Sun Aug 6 16:43:18 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Kirk Byers +snmp-server location Freemont, CA +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community bogus123 group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_startup_config.txt b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_startup_config.txt new file mode 100644 index 000000000..e7a23d430 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_config_filtered/normal/show_startup_config.txt @@ -0,0 +1,676 @@ +!Command: show startup-config +!Time: Sun Aug 6 17:36:54 2017 +!Startup config saved at: Sun Aug 6 15:32:43 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Test +snmp-server location Test +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community networktocode group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.605e.5de8 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.605e.5de8 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/1 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/2 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/3 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/4 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/5 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/6 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/7 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet3/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/1 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/2 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/3 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/4 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/5 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/6 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/7 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/8 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/9 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/10 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/11 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/12 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/13 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/14 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/15 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/16 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/17 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/18 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/19 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/20 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/21 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/22 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/23 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/24 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/25 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/26 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/27 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/28 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/29 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/30 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/31 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/32 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/33 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/34 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/35 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/36 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/37 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/38 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/39 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/40 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/41 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/42 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/43 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/44 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/45 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/46 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/47 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface Ethernet4/48 + shutdown + no switchport + mac-address 2cc2.605e.5de8 +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/expected_result.json new file mode 100644 index 000000000..9aa415e38 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/expected_result.json @@ -0,0 +1,24 @@ +{ + "os_version": "6.2(14)", + "uptime": 33162561, + "interface_list": [ + "mgmt0", + "Eth1/1", + "Eth1/2", + "Eth1/3", + "Eth1/4", + "Eth1/5", + "Eth1/6", + "Eth1/7", + "Eth1/8", + "Eth51/1/1", + "Eth51/1/2", + "Eth51/1/3", + "Eth51/1/4" + ], + "vendor": "Cisco", + "serial_number": "JAF1602BKEN", + "model": "Nexus7000", + "hostname": "EGGS-SW01.spam.com", + "fqdn": "EGGS-SW01.spam.com" +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hostname.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hostname.txt new file mode 100644 index 000000000..a929832cf --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hostname.txt @@ -0,0 +1 @@ +EGGS-SW01.spam.com diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hosts.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hosts.txt new file mode 100644 index 000000000..bd748677e --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_hosts.txt @@ -0,0 +1,8 @@ +DNS lookup disabled +Default domain for vrf:default is spam.com +Name/address lookup uses domain service +Name servers are 255.255.255.255 + + + +Host Address diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_interface_status.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_interface_status.txt new file mode 100644 index 000000000..e8bbe91e2 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_interface_status.txt @@ -0,0 +1,16 @@ +-------------------------------------------------------------------------------- +Port Name Status Vlan Duplex Speed Type +-------------------------------------------------------------------------------- +mgmt0 -- connected routed full a-1000 -- +Eth1/1 -- connected routed full 1000 +Eth1/2 -- connected routed full 1000 +Eth1/3 -- connected routed full 1000 +Eth1/4 -- connected routed full 1000 +Eth1/5 -- connected routed full 1000 +Eth1/6 -- connected routed full 1000 +Eth1/7 -- connected routed full 1000 +Eth1/8 -- connected routed full 1000 +Eth51/1/1 -- connected routed full 1000 +Eth51/1/2 -- connected routed full 1000 +Eth51/1/3 -- connected routed full 1000 +Eth51/1/4 -- connected routed full 1000 diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_version.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_version.txt new file mode 100644 index 000000000..8daf55b06 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/7009_6_2_14/show_version.txt @@ -0,0 +1,59 @@ +Cisco Nexus Operating System (NX-OS) Software +TAC support: http://www.cisco.com/tac +Documents: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html +Copyright (c) 2002-2015, Cisco Systems, Inc. All rights reserved. +The copyrights to certain works contained in this software are +owned by other third parties and used and distributed under +license. Certain components of this software are licensed under +the GNU General Public License (GPL) version 2.0 or the GNU +Lesser General Public License (LGPL) Version 2.1. A copy of each +such license is available at +http://www.opensource.org/licenses/gpl-2.0.php and +http://www.opensource.org/licenses/lgpl-2.1.php + +Software + BIOS: version 3.22.0 + kickstart: version 6.2(14) + system: version 6.2(14) + BIOS compile time: 02/20/10 + kickstart image file is: bootflash:///n7000-s1-kickstart.6.2.14.bin + kickstart compile time: 7/27/2015 9:00:00 [08/27/2015 18:41:26] + system image file is: bootflash:///n7000-s1-dk9.6.2.14.bin + system compile time: 7/27/2015 9:00:00 [08/27/2015 20:31:27] + + +Hardware + cisco Nexus7000 C7009 (9 Slot) Chassis ("Supervisor Module-1X") + Intel(R) Xeon(R) CPU with 8260668 kB of memory. + Processor Board ID JAF1602BKEN + + Device name: EGGS-SW01 + bootflash: 2048256 kB + slot0: 0 kB (expansion flash) + +Kernel uptime is 383 day(s), 19 hour(s), 49 minute(s), 21 second(s) + +Last reset at 878023 usecs after Tue Jul 19 17:46:55 2016 + + Reason: Reset Requested by CLI command reload + System version: 6.2(14) + Service: + +plugin + Core Plugin, Ethernet Plugin + + +CMP (Module 1) ok + CMP Software + CMP BIOS version: 02.01.05 + CMP Image version: 6.2(14) [build 6.2(14)] + CMP BIOS compile time: 8/ 4/2008 19:39:40 + CMP Image compile time: 7/27/2015 9:00:00 + +CMP (Module 2) ok + CMP Software + CMP BIOS version: 02.01.05 + CMP Image version: 6.2(14) [build 6.2(14)] + CMP BIOS compile time: 8/ 4/2008 19:39:40 + CMP Image compile time: 7/27/2015 9:00:00 + diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/expected_result.json new file mode 100644 index 000000000..b8702b448 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/expected_result.json @@ -0,0 +1,10 @@ +{ + "hostname": "nxos1", + "fqdn": "", + "model": "NX-OSv", + "uptime": 2030983, + "vendor": "Cisco", + "os_version": "7.3(1)D1(1)", + "serial_number": "TM6012EC74B", + "interface_list": ["mgmt0", "Eth2/1", "Eth2/2", "Eth2/3", "Eth2/4", "Eth2/5", "Eth2/6", "Eth2/7", "Eth2/8", "Eth2/9", "Eth2/10", "Eth2/11", "Eth2/12", "Eth2/13", "Eth2/14", "Eth2/15", "Eth2/16", "Eth2/17", "Eth2/18", "Eth2/19", "Eth2/20", "Eth2/21", "Eth2/22", "Eth2/23", "Eth2/24", "Eth2/25", "Eth2/26", "Eth2/27", "Eth2/28", "Eth2/29", "Eth2/30", "Eth2/31", "Eth2/32", "Eth2/33", "Eth2/34", "Eth2/35", "Eth2/36", "Eth2/37", "Eth2/38", "Eth2/39", "Eth2/40", "Eth2/41", "Eth2/42", "Eth2/43", "Eth2/44", "Eth2/45", "Eth2/46", "Eth2/47", "Eth2/48", "Eth3/1", "Eth3/2", "Eth3/3", "Eth3/4", "Eth3/5", "Eth3/6", "Eth3/7", "Eth3/8", "Eth3/9", "Eth3/10", "Eth3/11", "Eth3/12", "Eth3/13", "Eth3/14", "Eth3/15", "Eth3/16", "Eth3/17", "Eth3/18", "Eth3/19", "Eth3/20", "Eth3/21", "Eth3/22", "Eth3/23", "Eth3/24", "Eth3/25", "Eth3/26", "Eth3/27", "Eth3/28", "Eth3/29", "Eth3/30", "Eth3/31", "Eth3/32", "Eth3/33", "Eth3/34", "Eth3/35", "Eth3/36", "Eth3/37", "Eth3/38", "Eth3/39", "Eth3/40", "Eth3/41", "Eth3/42", "Eth3/43", "Eth3/44", "Eth3/45", "Eth3/46", "Eth3/47", "Eth3/48", "Eth4/1", "Eth4/2", "Eth4/3", "Eth4/4", "Eth4/5", "Eth4/6", "Eth4/7", "Eth4/8", "Eth4/9", "Eth4/10", "Eth4/11", "Eth4/12", "Eth4/13", "Eth4/14", "Eth4/15", "Eth4/16", "Eth4/17", "Eth4/18", "Eth4/19", "Eth4/20", "Eth4/21", "Eth4/22", "Eth4/23", "Eth4/24", "Eth4/25", "Eth4/26", "Eth4/27", "Eth4/28", "Eth4/29", "Eth4/30", "Eth4/31", "Eth4/32", "Eth4/33", "Eth4/34", "Eth4/35", "Eth4/36", "Eth4/37", "Eth4/38", "Eth4/39", "Eth4/40", "Eth4/41", "Eth4/42", "Eth4/43", "Eth4/44", "Eth4/45", "Eth4/46", "Eth4/47", "Eth4/48", "Lo55", "Vlan1"] +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hostname.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hostname.txt new file mode 100644 index 000000000..3a3959c32 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hostname.txt @@ -0,0 +1 @@ +nxos1 diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hosts.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hosts.txt new file mode 100644 index 000000000..10f8c5c2d --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_hosts.txt @@ -0,0 +1,6 @@ +DNS lookup enabled +Name/address lookup uses domain service +Name servers are 255.255.255.255 + + +Host Address diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_interface_status.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_interface_status.txt new file mode 100644 index 000000000..51b581dcc --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_interface_status.txt @@ -0,0 +1,150 @@ +-------------------------------------------------------------------------------- +Port Name Status Vlan Duplex Speed Type +-------------------------------------------------------------------------------- +mgmt0 -- connected routed full a-1000 -- +Eth2/1 -- connected routed full 1000 +Eth2/2 -- connected routed full 1000 +Eth2/3 -- connected routed full 1000 +Eth2/4 -- connected routed full 1000 +Eth2/5 -- connected routed full 1000 +Eth2/6 -- connected routed full 1000 +Eth2/7 -- connected routed full 1000 +Eth2/8 -- disabled routed auto auto +Eth2/9 -- disabled routed auto auto +Eth2/10 -- disabled routed auto auto +Eth2/11 -- disabled routed auto auto +Eth2/12 -- disabled routed auto auto +Eth2/13 -- disabled routed auto auto +Eth2/14 -- disabled routed auto auto +Eth2/15 -- disabled routed auto auto +Eth2/16 -- disabled routed auto auto +Eth2/17 -- disabled routed auto auto +Eth2/18 -- disabled routed auto auto +Eth2/19 -- disabled routed auto auto +Eth2/20 -- disabled routed auto auto +Eth2/21 -- disabled routed auto auto +Eth2/22 -- disabled routed auto auto +Eth2/23 -- disabled routed auto auto +Eth2/24 -- disabled routed auto auto +Eth2/25 -- disabled routed auto auto +Eth2/26 -- disabled routed auto auto +Eth2/27 -- disabled routed auto auto +Eth2/28 -- disabled routed auto auto +Eth2/29 -- disabled routed auto auto +Eth2/30 -- disabled routed auto auto +Eth2/31 -- disabled routed auto auto +Eth2/32 -- disabled routed auto auto +Eth2/33 -- disabled routed auto auto +Eth2/34 -- disabled routed auto auto +Eth2/35 -- disabled routed auto auto +Eth2/36 -- disabled routed auto auto +Eth2/37 -- disabled routed auto auto +Eth2/38 -- disabled routed auto auto +Eth2/39 -- disabled routed auto auto +Eth2/40 -- disabled routed auto auto +Eth2/41 -- disabled routed auto auto +Eth2/42 -- disabled routed auto auto +Eth2/43 -- disabled routed auto auto +Eth2/44 -- disabled routed auto auto +Eth2/45 -- disabled routed auto auto +Eth2/46 -- disabled routed auto auto +Eth2/47 -- disabled routed auto auto +Eth2/48 -- disabled routed auto auto +Eth3/1 -- disabled routed auto auto +Eth3/2 -- disabled routed auto auto +Eth3/3 -- disabled routed auto auto +Eth3/4 -- disabled routed auto auto +Eth3/5 -- disabled routed auto auto +Eth3/6 -- disabled routed auto auto +Eth3/7 -- disabled routed auto auto +Eth3/8 -- disabled routed auto auto +Eth3/9 -- disabled routed auto auto +Eth3/10 -- disabled routed auto auto +Eth3/11 -- disabled routed auto auto +Eth3/12 -- disabled routed auto auto +Eth3/13 -- disabled routed auto auto +Eth3/14 -- disabled routed auto auto +Eth3/15 -- disabled routed auto auto +Eth3/16 -- disabled routed auto auto +Eth3/17 -- disabled routed auto auto +Eth3/18 -- disabled routed auto auto +Eth3/19 -- disabled routed auto auto +Eth3/20 -- disabled routed auto auto +Eth3/21 -- disabled routed auto auto +Eth3/22 -- disabled routed auto auto +Eth3/23 -- disabled routed auto auto +Eth3/24 -- disabled routed auto auto +Eth3/25 -- disabled routed auto auto +Eth3/26 -- disabled routed auto auto +Eth3/27 -- disabled routed auto auto +Eth3/28 -- disabled routed auto auto +Eth3/29 -- disabled routed auto auto +Eth3/30 -- disabled routed auto auto +Eth3/31 -- disabled routed auto auto +Eth3/32 -- disabled routed auto auto +Eth3/33 -- disabled routed auto auto +Eth3/34 -- disabled routed auto auto +Eth3/35 -- disabled routed auto auto +Eth3/36 -- disabled routed auto auto +Eth3/37 -- disabled routed auto auto +Eth3/38 -- disabled routed auto auto +Eth3/39 -- disabled routed auto auto +Eth3/40 -- disabled routed auto auto +Eth3/41 -- disabled routed auto auto +Eth3/42 -- disabled routed auto auto +Eth3/43 -- disabled routed auto auto +Eth3/44 -- disabled routed auto auto +Eth3/45 -- disabled routed auto auto +Eth3/46 -- disabled routed auto auto +Eth3/47 -- disabled routed auto auto +Eth3/48 -- disabled routed auto auto +Eth4/1 -- disabled routed auto auto +Eth4/2 -- disabled routed auto auto +Eth4/3 -- disabled routed auto auto +Eth4/4 -- disabled routed auto auto +Eth4/5 -- disabled routed auto auto +Eth4/6 -- disabled routed auto auto +Eth4/7 -- disabled routed auto auto +Eth4/8 -- disabled routed auto auto +Eth4/9 -- disabled routed auto auto +Eth4/10 -- disabled routed auto auto +Eth4/11 -- disabled routed auto auto +Eth4/12 -- disabled routed auto auto +Eth4/13 -- disabled routed auto auto +Eth4/14 -- disabled routed auto auto +Eth4/15 -- disabled routed auto auto +Eth4/16 -- disabled routed auto auto +Eth4/17 -- disabled routed auto auto +Eth4/18 -- disabled routed auto auto +Eth4/19 -- disabled routed auto auto +Eth4/20 -- disabled routed auto auto +Eth4/21 -- disabled routed auto auto +Eth4/22 -- disabled routed auto auto +Eth4/23 -- disabled routed auto auto +Eth4/24 -- disabled routed auto auto +Eth4/25 -- disabled routed auto auto +Eth4/26 -- disabled routed auto auto +Eth4/27 -- disabled routed auto auto +Eth4/28 -- disabled routed auto auto +Eth4/29 -- disabled routed auto auto +Eth4/30 -- disabled routed auto auto +Eth4/31 -- disabled routed auto auto +Eth4/32 -- disabled routed auto auto +Eth4/33 -- disabled routed auto auto +Eth4/34 -- disabled routed auto auto +Eth4/35 -- disabled routed auto auto +Eth4/36 -- disabled routed auto auto +Eth4/37 -- disabled routed auto auto +Eth4/38 -- disabled routed auto auto +Eth4/39 -- disabled routed auto auto +Eth4/40 -- disabled routed auto auto +Eth4/41 -- disabled routed auto auto +Eth4/42 -- disabled routed auto auto +Eth4/43 -- disabled routed auto auto +Eth4/44 -- disabled routed auto auto +Eth4/45 -- disabled routed auto auto +Eth4/46 -- disabled routed auto auto +Eth4/47 -- disabled routed auto auto +Eth4/48 -- disabled routed auto auto +Lo55 -- connected routed auto auto -- +Vlan1 -- down routed auto auto -- diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_version.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_version.txt new file mode 100644 index 000000000..ed3931c69 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/missing_domain/show_version.txt @@ -0,0 +1,37 @@ +Cisco Nexus Operating System (NX-OS) Software +TAC support: http://www.cisco.com/tac +Documents: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html +Copyright (c) 2002-2016, Cisco Systems, Inc. All rights reserved. +The copyrights to certain works contained herein are owned by +other third parties and are used and distributed under license. +Some parts of this software are covered under the GNU Public +License. A copy of the license is available at +http://www.gnu.org/licenses/gpl.html. + +NX-OSv is a demo version of the Nexus Operating System + +Software + loader: version N/A + kickstart: version 7.3(1)D1(1) [build 7.3(1)D1(0.10)] + system: version 7.3(1)D1(1) [build 7.3(1)D1(0.10)] + kickstart image file is: bootflash:///titanium-d1-kickstart.7.3.1.D1.0.10.bin + kickstart compile time: 1/11/2016 16:00:00 [02/22/2016 23:39:33] + system image file is: bootflash:///titanium-d1.7.3.1.D1.0.10.bin + system compile time: 1/11/2016 16:00:00 [02/23/2016 01:43:36] + + +Hardware + cisco NX-OSv Chassis ("NX-OSv Supervisor Module") + Intel(R) Xeon(R) CPU E5-2670 with 4002312 kB of memory. + Processor Board ID TM6012EC74B + + Device name: nxos1 + bootflash: 1582402 kB + +Kernel uptime is 23 day(s), 12 hour(s), 9 minute(s), 43 second(s) + + +plugin + Core Plugin, Ethernet Plugin + +Active Package(s) diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/expected_result.json new file mode 100644 index 000000000..42d095cc8 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/expected_result.json @@ -0,0 +1,10 @@ +{ + "hostname": "nxos1.twb-tech.com", + "fqdn": "nxos1.twb-tech.com", + "model": "NX-OSv", + "uptime": 2030983, + "vendor": "Cisco", + "os_version": "7.3(1)D1(1)", + "serial_number": "TM6012EC74B", + "interface_list": ["mgmt0", "Eth2/1", "Eth2/2", "Eth2/3", "Eth2/4", "Eth2/5", "Eth2/6", "Eth2/7", "Eth2/8", "Eth2/9", "Eth2/10", "Eth2/11", "Eth2/12", "Eth2/13", "Eth2/14", "Eth2/15", "Eth2/16", "Eth2/17", "Eth2/18", "Eth2/19", "Eth2/20", "Eth2/21", "Eth2/22", "Eth2/23", "Eth2/24", "Eth2/25", "Eth2/26", "Eth2/27", "Eth2/28", "Eth2/29", "Eth2/30", "Eth2/31", "Eth2/32", "Eth2/33", "Eth2/34", "Eth2/35", "Eth2/36", "Eth2/37", "Eth2/38", "Eth2/39", "Eth2/40", "Eth2/41", "Eth2/42", "Eth2/43", "Eth2/44", "Eth2/45", "Eth2/46", "Eth2/47", "Eth2/48", "Eth3/1", "Eth3/2", "Eth3/3", "Eth3/4", "Eth3/5", "Eth3/6", "Eth3/7", "Eth3/8", "Eth3/9", "Eth3/10", "Eth3/11", "Eth3/12", "Eth3/13", "Eth3/14", "Eth3/15", "Eth3/16", "Eth3/17", "Eth3/18", "Eth3/19", "Eth3/20", "Eth3/21", "Eth3/22", "Eth3/23", "Eth3/24", "Eth3/25", "Eth3/26", "Eth3/27", "Eth3/28", "Eth3/29", "Eth3/30", "Eth3/31", "Eth3/32", "Eth3/33", "Eth3/34", "Eth3/35", "Eth3/36", "Eth3/37", "Eth3/38", "Eth3/39", "Eth3/40", "Eth3/41", "Eth3/42", "Eth3/43", "Eth3/44", "Eth3/45", "Eth3/46", "Eth3/47", "Eth3/48", "Eth4/1", "Eth4/2", "Eth4/3", "Eth4/4", "Eth4/5", "Eth4/6", "Eth4/7", "Eth4/8", "Eth4/9", "Eth4/10", "Eth4/11", "Eth4/12", "Eth4/13", "Eth4/14", "Eth4/15", "Eth4/16", "Eth4/17", "Eth4/18", "Eth4/19", "Eth4/20", "Eth4/21", "Eth4/22", "Eth4/23", "Eth4/24", "Eth4/25", "Eth4/26", "Eth4/27", "Eth4/28", "Eth4/29", "Eth4/30", "Eth4/31", "Eth4/32", "Eth4/33", "Eth4/34", "Eth4/35", "Eth4/36", "Eth4/37", "Eth4/38", "Eth4/39", "Eth4/40", "Eth4/41", "Eth4/42", "Eth4/43", "Eth4/44", "Eth4/45", "Eth4/46", "Eth4/47", "Eth4/48", "Lo55", "Vlan1"] +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hostname.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hostname.txt new file mode 100644 index 000000000..7f3b414c4 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hostname.txt @@ -0,0 +1 @@ +nxos1.twb-tech.com diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hosts.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hosts.txt new file mode 100644 index 000000000..7cb297953 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_hosts.txt @@ -0,0 +1,4 @@ +DNS lookup enabled +Vrf Name: default Default domain is twb-tech.com +Name servers are 8.8.8.8 8.8.4.4 +Host Address diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_interface_status.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_interface_status.txt new file mode 100644 index 000000000..51b581dcc --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_interface_status.txt @@ -0,0 +1,150 @@ +-------------------------------------------------------------------------------- +Port Name Status Vlan Duplex Speed Type +-------------------------------------------------------------------------------- +mgmt0 -- connected routed full a-1000 -- +Eth2/1 -- connected routed full 1000 +Eth2/2 -- connected routed full 1000 +Eth2/3 -- connected routed full 1000 +Eth2/4 -- connected routed full 1000 +Eth2/5 -- connected routed full 1000 +Eth2/6 -- connected routed full 1000 +Eth2/7 -- connected routed full 1000 +Eth2/8 -- disabled routed auto auto +Eth2/9 -- disabled routed auto auto +Eth2/10 -- disabled routed auto auto +Eth2/11 -- disabled routed auto auto +Eth2/12 -- disabled routed auto auto +Eth2/13 -- disabled routed auto auto +Eth2/14 -- disabled routed auto auto +Eth2/15 -- disabled routed auto auto +Eth2/16 -- disabled routed auto auto +Eth2/17 -- disabled routed auto auto +Eth2/18 -- disabled routed auto auto +Eth2/19 -- disabled routed auto auto +Eth2/20 -- disabled routed auto auto +Eth2/21 -- disabled routed auto auto +Eth2/22 -- disabled routed auto auto +Eth2/23 -- disabled routed auto auto +Eth2/24 -- disabled routed auto auto +Eth2/25 -- disabled routed auto auto +Eth2/26 -- disabled routed auto auto +Eth2/27 -- disabled routed auto auto +Eth2/28 -- disabled routed auto auto +Eth2/29 -- disabled routed auto auto +Eth2/30 -- disabled routed auto auto +Eth2/31 -- disabled routed auto auto +Eth2/32 -- disabled routed auto auto +Eth2/33 -- disabled routed auto auto +Eth2/34 -- disabled routed auto auto +Eth2/35 -- disabled routed auto auto +Eth2/36 -- disabled routed auto auto +Eth2/37 -- disabled routed auto auto +Eth2/38 -- disabled routed auto auto +Eth2/39 -- disabled routed auto auto +Eth2/40 -- disabled routed auto auto +Eth2/41 -- disabled routed auto auto +Eth2/42 -- disabled routed auto auto +Eth2/43 -- disabled routed auto auto +Eth2/44 -- disabled routed auto auto +Eth2/45 -- disabled routed auto auto +Eth2/46 -- disabled routed auto auto +Eth2/47 -- disabled routed auto auto +Eth2/48 -- disabled routed auto auto +Eth3/1 -- disabled routed auto auto +Eth3/2 -- disabled routed auto auto +Eth3/3 -- disabled routed auto auto +Eth3/4 -- disabled routed auto auto +Eth3/5 -- disabled routed auto auto +Eth3/6 -- disabled routed auto auto +Eth3/7 -- disabled routed auto auto +Eth3/8 -- disabled routed auto auto +Eth3/9 -- disabled routed auto auto +Eth3/10 -- disabled routed auto auto +Eth3/11 -- disabled routed auto auto +Eth3/12 -- disabled routed auto auto +Eth3/13 -- disabled routed auto auto +Eth3/14 -- disabled routed auto auto +Eth3/15 -- disabled routed auto auto +Eth3/16 -- disabled routed auto auto +Eth3/17 -- disabled routed auto auto +Eth3/18 -- disabled routed auto auto +Eth3/19 -- disabled routed auto auto +Eth3/20 -- disabled routed auto auto +Eth3/21 -- disabled routed auto auto +Eth3/22 -- disabled routed auto auto +Eth3/23 -- disabled routed auto auto +Eth3/24 -- disabled routed auto auto +Eth3/25 -- disabled routed auto auto +Eth3/26 -- disabled routed auto auto +Eth3/27 -- disabled routed auto auto +Eth3/28 -- disabled routed auto auto +Eth3/29 -- disabled routed auto auto +Eth3/30 -- disabled routed auto auto +Eth3/31 -- disabled routed auto auto +Eth3/32 -- disabled routed auto auto +Eth3/33 -- disabled routed auto auto +Eth3/34 -- disabled routed auto auto +Eth3/35 -- disabled routed auto auto +Eth3/36 -- disabled routed auto auto +Eth3/37 -- disabled routed auto auto +Eth3/38 -- disabled routed auto auto +Eth3/39 -- disabled routed auto auto +Eth3/40 -- disabled routed auto auto +Eth3/41 -- disabled routed auto auto +Eth3/42 -- disabled routed auto auto +Eth3/43 -- disabled routed auto auto +Eth3/44 -- disabled routed auto auto +Eth3/45 -- disabled routed auto auto +Eth3/46 -- disabled routed auto auto +Eth3/47 -- disabled routed auto auto +Eth3/48 -- disabled routed auto auto +Eth4/1 -- disabled routed auto auto +Eth4/2 -- disabled routed auto auto +Eth4/3 -- disabled routed auto auto +Eth4/4 -- disabled routed auto auto +Eth4/5 -- disabled routed auto auto +Eth4/6 -- disabled routed auto auto +Eth4/7 -- disabled routed auto auto +Eth4/8 -- disabled routed auto auto +Eth4/9 -- disabled routed auto auto +Eth4/10 -- disabled routed auto auto +Eth4/11 -- disabled routed auto auto +Eth4/12 -- disabled routed auto auto +Eth4/13 -- disabled routed auto auto +Eth4/14 -- disabled routed auto auto +Eth4/15 -- disabled routed auto auto +Eth4/16 -- disabled routed auto auto +Eth4/17 -- disabled routed auto auto +Eth4/18 -- disabled routed auto auto +Eth4/19 -- disabled routed auto auto +Eth4/20 -- disabled routed auto auto +Eth4/21 -- disabled routed auto auto +Eth4/22 -- disabled routed auto auto +Eth4/23 -- disabled routed auto auto +Eth4/24 -- disabled routed auto auto +Eth4/25 -- disabled routed auto auto +Eth4/26 -- disabled routed auto auto +Eth4/27 -- disabled routed auto auto +Eth4/28 -- disabled routed auto auto +Eth4/29 -- disabled routed auto auto +Eth4/30 -- disabled routed auto auto +Eth4/31 -- disabled routed auto auto +Eth4/32 -- disabled routed auto auto +Eth4/33 -- disabled routed auto auto +Eth4/34 -- disabled routed auto auto +Eth4/35 -- disabled routed auto auto +Eth4/36 -- disabled routed auto auto +Eth4/37 -- disabled routed auto auto +Eth4/38 -- disabled routed auto auto +Eth4/39 -- disabled routed auto auto +Eth4/40 -- disabled routed auto auto +Eth4/41 -- disabled routed auto auto +Eth4/42 -- disabled routed auto auto +Eth4/43 -- disabled routed auto auto +Eth4/44 -- disabled routed auto auto +Eth4/45 -- disabled routed auto auto +Eth4/46 -- disabled routed auto auto +Eth4/47 -- disabled routed auto auto +Eth4/48 -- disabled routed auto auto +Lo55 -- connected routed auto auto -- +Vlan1 -- down routed auto auto -- diff --git a/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_version.txt b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_version.txt new file mode 100644 index 000000000..ed3931c69 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_facts/normal/show_version.txt @@ -0,0 +1,37 @@ +Cisco Nexus Operating System (NX-OS) Software +TAC support: http://www.cisco.com/tac +Documents: http://www.cisco.com/en/US/products/ps9372/tsd_products_support_series_home.html +Copyright (c) 2002-2016, Cisco Systems, Inc. All rights reserved. +The copyrights to certain works contained herein are owned by +other third parties and are used and distributed under license. +Some parts of this software are covered under the GNU Public +License. A copy of the license is available at +http://www.gnu.org/licenses/gpl.html. + +NX-OSv is a demo version of the Nexus Operating System + +Software + loader: version N/A + kickstart: version 7.3(1)D1(1) [build 7.3(1)D1(0.10)] + system: version 7.3(1)D1(1) [build 7.3(1)D1(0.10)] + kickstart image file is: bootflash:///titanium-d1-kickstart.7.3.1.D1.0.10.bin + kickstart compile time: 1/11/2016 16:00:00 [02/22/2016 23:39:33] + system image file is: bootflash:///titanium-d1.7.3.1.D1.0.10.bin + system compile time: 1/11/2016 16:00:00 [02/23/2016 01:43:36] + + +Hardware + cisco NX-OSv Chassis ("NX-OSv Supervisor Module") + Intel(R) Xeon(R) CPU E5-2670 with 4002312 kB of memory. + Processor Board ID TM6012EC74B + + Device name: nxos1 + bootflash: 1582402 kB + +Kernel uptime is 23 day(s), 12 hour(s), 9 minute(s), 43 second(s) + + +plugin + Core Plugin, Ethernet Plugin + +Active Package(s) diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/expected_result.json new file mode 100644 index 000000000..3db5765a4 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/expected_result.json @@ -0,0 +1,27 @@ +{ + "Ethernet154/1/48": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "0C:D9:96:08:0D:71", + "speed": 100 + }, + "Ethernet154/1/46": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "0C:D9:96:08:0D:6F", + "speed": 0 + }, + "Ethernet154/1/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "0C:D9:96:08:0D:6E", + "speed": 0 + } +} + diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/show_interface.txt b/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/show_interface.txt new file mode 100644 index 000000000..d42930a61 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/5548_7_0_8_N1_1/show_interface.txt @@ -0,0 +1,104 @@ +Ethernet154/1/46 is down (Link not connected) + Hardware: 10/100/1000 Ethernet, address: 0cd9.9608.0d6f (bia 0cd9.9608.0d6f) + MTU 1500 bytes, BW 23 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Input flow-control is off, output flow-control is on + Switchport monitor is off + EtherType is 0x8100 + Last link flapped 5week(s) 6day(s) + Last clearing of "show interface" counters never + 12 interface resets + 30 seconds input rate 0 bits/sec, 0 packets/sec + 30 seconds output rate 0 bits/sec, 0 packets/sec + Load-Interval #2: 5 minute (300 seconds) + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 104751065 unicast packets 856963 multicast packets 501 broadcast packets + 105608529 input packets 73128915048 bytes + 0 jumbo packets 0 storm suppression bytes + 0 runts 0 giants 0 CRC 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 58291689 unicast packets 32237862 multicast packets 14956712 broadcast packets + 105486263 output packets 18381839734 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet154/1/48 is up + Hardware: 10/100/1000 Ethernet, address: 0cd9.9608.0d71 (bia 0cd9.9608.0d71) + MTU 1500 bytes, BW 100000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA + Port mode is access + full-duplex, 100 Mb/s + Beacon is turned off + Input flow-control is off, output flow-control is on + Switchport monitor is off + EtherType is 0x8100 + Last link flapped 11week(s) 1day(s) + Last clearing of "show interface" counters never + 16 interface resets + 30 seconds input rate 0 bits/sec, 0 packets/sec + 30 seconds output rate 176 bits/sec, 0 packets/sec + Load-Interval #2: 5 minute (300 seconds) + input rate 336 bps, 0 pps; output rate 480 bps, 0 pps + RX + 14005040 unicast packets 299329 multicast packets 160 broadcast packets + 14304529 input packets 1462644820 bytes + 0 jumbo packets 0 storm suppression bytes + 0 runts 0 giants 0 CRC 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 14095466 unicast packets 15783914 multicast packets 16578099 broadcast packets + 46457479 output packets 5193557611 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause + +Ethernet154/1/47 is down (Administratively down) + Hardware: 10/100/1000 Ethernet, address: 0cd9.9608.0d6e (bia 0cd9.9608.0d6e) + MTU 1500 bytes, BW 23 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA + Port mode is access + auto-duplex, auto-speed + Beacon is turned off + Input flow-control is off, output flow-control is on + Switchport monitor is off + EtherType is 0x8100 + Last link flapped 5week(s) 6day(s) + Last clearing of "show interface" counters never + 12 interface resets + 30 seconds input rate 0 bits/sec, 0 packets/sec + 30 seconds output rate 0 bits/sec, 0 packets/sec + Load-Interval #2: 5 minute (300 seconds) + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 104751065 unicast packets 856963 multicast packets 501 broadcast packets + 105608529 input packets 73128915048 bytes + 0 jumbo packets 0 storm suppression bytes + 0 runts 0 giants 0 CRC 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 58291689 unicast packets 32237862 multicast packets 14956712 broadcast packets + 105486263 output packets 18381839734 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/expected_result.json new file mode 100644 index 000000000..52c3b98ca --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/expected_result.json @@ -0,0 +1,122 @@ +{ + "Ethernet2/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "mgmt0": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:12:EC:74", + "speed": 1000 + }, + "Ethernet2/6": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "loopback0": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "", + "speed": 8000 + }, + "Ethernet2/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "loopback55": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "", + "speed": 8000 + }, + "Ethernet2/7": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Vlan1": { + "is_enabled": false, + "description": "", + "last_flapped": -1, + "is_up": false, + "mac_address": "", + "speed": 1000 + }, + "Ethernet2/5": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/4": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/3": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/2": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/1": { + "is_enabled": true, + "description": "", + "last_flapped": -1, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/show_interface.txt b/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/show_interface.txt new file mode 100644 index 000000000..134f93d37 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/alternate1/show_interface.txt @@ -0,0 +1,533 @@ +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 2cc2.6012.ec74 (bia 2cc2.6012.ec74) + Internet Address is 10.0.0.71/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 245/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 7208 bits/sec, 8 packets/sec + 1 minute output rate 28432 bits/sec, 10 packets/sec + Rx + 2322661 input packets 2284638 unicast packets 38022 multicast packets + 1 broadcast packets 260628011 bytes + Tx + 2084700 output packets 2046680 unicast packets 38018 multicast packets + 2 broadcast packets 472741923 bytes +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.605e.5dba) + Internet Address is 10.10.10.10/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.602f.90f4) + Internet Address is 10.100.100.1/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/3 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.600f.a8a1) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/4 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6068.4c89) + Internet Address is 10.100.17.1/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/5 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.602c.547a) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/6 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6070.20b1) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 4d20h + Last clearing of "show interface" counters never + 10 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/7 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.605d.2dc0) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 4d20h + Last clearing of "show interface" counters never + 10 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.601f.9ef7) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6004.1f5b) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 1.1.2.225/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors +loopback55 is up +admin state is up + Hardware: Loopback + Internet Address is 1.1.1.37/24 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors +Vlan1 is down (Administratively down), line protocol is down, autostate enabled + Hardware is EtherSVI, address is 2cc2.605e.5de8 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive not supported + ARP type: ARPA + Last clearing of "show interface" counters never + 60 seconds input rate 0 bits/sec, 0 packets/sec + 60 seconds output rate 0 bits/sec, 0 packets/sec + Load-Interval #2: 5 minute (300 seconds) + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + L3 Switched: + input: 0 pkts, 0 bytes - output: 0 pkts, 0 bytes + L3 in Switched: + ucast: 0 pkts, 0 bytes - mcast: 0 pkts, 0 bytes + L3 out Switched: + ucast: 0 pkts, 0 bytes - mcast: 0 pkts, 0 bytes diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/expected_result.json new file mode 100644 index 000000000..5142aa93a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/expected_result.json @@ -0,0 +1,1186 @@ +{ + "mgmt0": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:12:EC:74", + "speed": 1000 + }, + "Ethernet2/1": { + "is_enabled": true, + "description": "Testing port descriptions", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/2": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/3": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/4": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/5": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/6": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/7": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet3/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Vlan1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "", + "speed": 1000 + }, + "Ethernet3/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/42": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/43": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/40": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/41": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/46": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/47": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/44": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/45": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/48": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "loopback55": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "", + "speed": 8000 + }, + "Ethernet4/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/5": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/4": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/7": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/6": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/1": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/3": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/2": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/8": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/6": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/7": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/4": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/5": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/2": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/3": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/9": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet3/36": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/37": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/34": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/35": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/32": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/33": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/30": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/31": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/38": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet3/39": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet2/28": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/29": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/26": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/27": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/24": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/25": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/22": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/23": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/20": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet2/21": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "2C:C2:60:4F:FE:B2", + "speed": 1000 + }, + "Ethernet4/11": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/10": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/13": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/12": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/15": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/14": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/17": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/16": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/19": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "Ethernet4/18": { + "is_enabled": false, + "description": "", + "last_flapped": -1.0, + "is_up": false, + "mac_address": "00:0C:29:D1:D5:6B", + "speed": 1000 + }, + "loopback0": { + "is_enabled": true, + "description": "", + "last_flapped": -1.0, + "is_up": true, + "mac_address": "", + "speed": 8000 + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/show_interface.txt b/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/show_interface.txt new file mode 100644 index 000000000..452cc9668 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces/normal/show_interface.txt @@ -0,0 +1,6120 @@ +mgmt0 is up +admin state is up + Hardware: Ethernet, address: 2cc2.6012.ec74 (bia 2cc2.6012.ec74) + Internet Address is 10.0.0.71/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 245/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Auto-Negotiation is turned on + Auto-mdix is turned off + EtherType is 0x0000 + 1 minute input rate 7208 bits/sec, 8 packets/sec + 1 minute output rate 28432 bits/sec, 10 packets/sec + Rx + 2322661 input packets 2284638 unicast packets 38022 multicast packets + 1 broadcast packets 260628011 bytes + Tx + 2084700 output packets 2046680 unicast packets 38018 multicast packets + 2 broadcast packets 472741923 bytes +Ethernet2/1 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.605e.5dba) + Description: Testing port descriptions + Internet Address is 10.10.10.10/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/2 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.602f.90f4) + Internet Address is 10.100.100.1/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/3 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.600f.a8a1) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/4 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6068.4c89) + Internet Address is 10.100.17.1/24 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/5 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.602c.547a) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 3week(s) 5day(s) + Last clearing of "show interface" counters never + 1 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/6 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6070.20b1) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 4d20h + Last clearing of "show interface" counters never + 10 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/7 is up +admin state is up, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.605d.2dc0) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + full-duplex, 1000 Mb/s + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped 4d20h + Last clearing of "show interface" counters never + 10 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.601f.9ef7) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 2cc2.6004.1f5b) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet2/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 2cc2.604f.feb2 (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet3/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/1 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/2 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/3 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/4 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/5 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/6 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/7 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/8 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/9 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 2cc2.604f.feb2) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/10 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/11 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/12 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/13 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/14 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/15 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/16 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/17 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/18 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/19 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/20 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/21 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/22 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/23 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/24 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/25 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/26 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/27 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/28 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/29 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/30 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/31 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/32 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/33 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/34 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/35 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/36 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/37 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/38 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/39 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/40 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/41 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/42 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/43 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/44 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/45 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/46 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/47 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +Ethernet4/48 is down (Administratively down) +admin state is down, Dedicated Interface + Hardware: Ethernet, address: 000c.29d1.d56b (bia 0000.0000.0000) + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, medium is broadcast + Port mode is routed + auto-duplex, auto-speed + Beacon is turned off + Auto-Negotiation is turned off + Input flow-control is off, output flow-control is off + Auto-mdix is turned off + Switchport monitor is off + EtherType is 0x8100 + EEE (efficient-ethernet) : n/a + Last link flapped never + Last clearing of "show interface" counters never + 0 interface resets + Load-Interval #1: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + Load-Interval #2: 0 seconds + 0 seconds input rate 0 bits/sec, 0 packets/sec + 0 seconds output rate 0 bits/sec, 0 packets/sec + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + RX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 input packets 0 bytes + 0 jumbo packets 0 storm suppression packets + 0 runts 0 giants 0 CRC/FCS 0 no buffer + 0 input error 0 short frame 0 overrun 0 underrun 0 ignored + 0 watchdog 0 bad etype drop 0 bad proto drop 0 if down drop + 0 input with dribble 0 input discard + 0 Rx pause + TX + 0 unicast packets 0 multicast packets 0 broadcast packets + 0 output packets 0 bytes + 0 jumbo packets + 0 output error 0 collision 0 deferred 0 late collision + 0 lost carrier 0 no carrier 0 babble 0 output discard + 0 Tx pause +loopback0 is up +admin state is up + Hardware: Loopback + Internet Address is 1.1.2.225/32 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors +loopback55 is up +admin state is up + Hardware: Loopback + Internet Address is 1.1.1.37/24 + MTU 1500 bytes, BW 8000000 Kbit, DLY 5000 usec + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation LOOPBACK, medium is broadcast + Port mode is routed + Auto-mdix is turned off + 0 packets input 0 bytes + 0 multicast frames 0 compressed + 0 input errors 0 frame 0 overrun 0 fifo + 0 packets output 0 bytes 0 underruns + 0 output errors 0 collisions 0 fifo + 0 out_carrier_errors +Vlan1 is down (Administratively down), line protocol is down, autostate enabled + Hardware is EtherSVI, address is 2cc2.605e.5de8 + MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec, + reliability 255/255, txload 1/255, rxload 1/255 + Encapsulation ARPA, loopback not set + Keepalive not supported + ARP type: ARPA + Last clearing of "show interface" counters never + 60 seconds input rate 0 bits/sec, 0 packets/sec + 60 seconds output rate 0 bits/sec, 0 packets/sec + Load-Interval #2: 5 minute (300 seconds) + input rate 0 bps, 0 pps; output rate 0 bps, 0 pps + L3 Switched: + input: 0 pkts, 0 bytes - output: 0 pkts, 0 bytes + L3 in Switched: + ucast: 0 pkts, 0 bytes - mcast: 0 pkts, 0 bytes + L3 out Switched: + ucast: 0 pkts, 0 bytes - mcast: 0 pkts, 0 bytes diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/expected_result.json new file mode 100644 index 000000000..060ce328a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/expected_result.json @@ -0,0 +1,47 @@ +{ + "Ethernet2/1": { + "ipv4": { + "1.1.1.1": { + "prefix_length": 24 + } + } + }, + "Ethernet2/2": { + "ipv4": { + "2.2.2.2": { + "prefix_length": 27 + }, + "3.3.3.3": { + "prefix_length": 25 + } + } + }, + "Ethernet2/3": { + "ipv4": { + "4.4.4.4": { + "prefix_length": 16 + } + }, + "ipv6": { + "fe80::2ec2:60ff:fe4f:feb2": { + "prefix_length": 64 + }, + "2001:db8::1": { + "prefix_length": 10 + } + } + }, + "Ethernet2/4": { + "ipv6": { + "fe80::2ec2:60ff:fe4f:feb2": { + "prefix_length": 64 + }, + "2001:11:2233::a1": { + "prefix_length": 24 + }, + "2001:cc11:22bb:0:2ec2:60ff:fe4f:feb2": { + "prefix_length": 64 + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ip_interface_vrf_default.txt b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ip_interface_vrf_default.txt new file mode 100644 index 000000000..cc688a663 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ip_interface_vrf_default.txt @@ -0,0 +1,89 @@ +IP Interface Status for VRF "default" +Ethernet2/1, Interface status: protocol-up/link-up/admin-up, iod: 37, + IP address: 1.1.1.1, IP subnet: 1.1.1.0/24 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 59/57/0/237/292 + Unicast bytes : 4829/3619/0/15823/18232 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/2, Interface status: protocol-up/link-up/admin-up, iod: 38, + IP address: 2.2.2.2, IP subnet: 2.2.2.0/27 route-preference: 0, tag: 0 + IP address: 3.3.3.3, IP subnet: 3.3.3.0/25 secondary route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: disabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 0/0/0/0/0 + Unicast bytes : 0/0/0/0/0 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled +Ethernet2/3, Interface status: protocol-up/link-up/admin-up, iod: 39, + IP address: 4.4.4.4, IP subnet: 4.4.0.0/16 route-preference: 0, tag: 0 + IP broadcast address: 255.255.255.255 + IP multicast groups locally joined: none + IP MTU: 1500 bytes (using link MTU) + IP primary address route-preference: 0, tag: 0 + IP proxy ARP : disabled + IP Local Proxy ARP : disabled + IP multicast routing: disabled + IP icmp redirects: enabled + IP directed-broadcast: disabled + IP Forwarding: disabled + IP icmp unreachables (except port): disabled + IP icmp port-unreachable: enabled + IP unicast reverse path forwarding: none + IP load sharing: none + IP interface statistics last reset: never + IP interface software stats: (sent/received/forwarded/originated/consumed) + Unicast packets : 4/4/0/14/18 + Unicast bytes : 408/336/0/1248/1512 + Multicast packets : 0/0/0/0/0 + Multicast bytes : 0/0/0/0/0 + Broadcast packets : 0/0/0/0/0 + Broadcast bytes : 0/0/0/0/0 + Labeled packets : 0/0/0/0/0 + Labeled bytes : 0/0/0/0/0 + WCCP Redirect outbound: disabled + WCCP Redirect inbound: disabled + WCCP Redirect exclude: disabled diff --git a/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface_vrf_default.txt b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface_vrf_default.txt new file mode 100644 index 000000000..021618d58 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_interfaces_ip/normal/show_ipv6_interface_vrf_default.txt @@ -0,0 +1,47 @@ +IPv6 Interface Status for VRF "default" +Ethernet2/3, Interface status: protocol-up/link-up/admin-up, iod: 39 + IPv6 address: + 2001:db8::1/10 [VALID] + IPv6 subnet: 2000::/10 + IPv6 link-local address: fe80::2ec2:60ff:fe4f:feb2 (default) [VALID] + IPv6 virtual addresses configured: none + IPv6 multicast routing: disabled + IPv6 report link local: disabled + IPv6 Forwarding feature: disabled + IPv6 multicast groups locally joined: + ff02::2 ff02::1 ff02::1:ff00:1 ff02::1:ff4f:feb2 + ff02::1:ff00:0 + IPv6 multicast (S,G) entries joined: none + IPv6 MTU: 1500 (using link MTU) + IPv6 unicast reverse path forwarding: none + IPv6 load sharing: none + IPv6 interface statistics last reset: never + IPv6 interface RP-traffic statistics: (forwarded/originated/consumed) + Unicast packets: 0/0/0 + Unicast bytes: 0/0/0 + Multicast packets: 0/15/0 + Multicast bytes: 0/1590/0 +Ethernet2/4, Interface status: protocol-up/link-up/admin-up, iod: 40 + IPv6 address: + 2001:11:2233::a1/24 [VALID] + 2001:cc11:22bb:0:2ec2:60ff:fe4f:feb2/64 [VALID] + IPv6 subnet: 2001::/24 + IPv6 link-local address: fe80::2ec2:60ff:fe4f:feb2 (default) [VALID] + IPv6 virtual addresses configured: none + IPv6 multicast routing: disabled + IPv6 report link local: disabled + IPv6 Forwarding feature: disabled + IPv6 multicast groups locally joined: + ff02::1:ff4f:feb2 ff02::2 ff02::1 ff02::1:ff00:a1 + ff02::1:ff4f:feb2 ff02::1:ff00:0 + IPv6 multicast (S,G) entries joined: none + IPv6 MTU: 1500 (using link MTU) + IPv6 unicast reverse path forwarding: none + IPv6 load sharing: none + IPv6 interface statistics last reset: never + IPv6 interface RP-traffic statistics: (forwarded/originated/consumed) + Unicast packets: 0/0/0 + Unicast bytes: 0/0/0 + Multicast packets: 0/18/0 + Multicast bytes: 0/2076/0 + diff --git a/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/expected_result.json new file mode 100644 index 000000000..e3fb5f76c --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/expected_result.json @@ -0,0 +1,10 @@ +{ + "Eth2/2": [ + {"hostname": "nxos2.madeupdomain.com", "port": "Eth2/2"}], + "Eth2/3": [ + {"hostname": "nxos2.madeupdomain.com", "port": "Eth2/3"}], + "Eth2/1": [ + {"hostname": "nxos2.madeupdomain.com", "port": "Eth2/1"}], + "Eth2/4": [ + {"hostname": "nxos2.madeupdomain.com", "port": "Eth2/4"}] +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.txt b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.txt new file mode 100644 index 000000000..e047fb836 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors/normal/show_lldp_neighbors.txt @@ -0,0 +1,9 @@ +Capability codes: + (R) Router, (B) Bridge, (T) Telephone, (C) DOCSIS Cable Device + (W) WLAN Access Point, (P) Repeater, (S) Station, (O) Other +Device ID Local Intf Hold-time Capability Port ID +nxos2.madeupdomain.com Eth2/1 120 BR Eth2/1 +nxos2.madeupdomain.com Eth2/2 120 BR Eth2/2 +nxos2.madeupdomain.com Eth2/3 120 BR Eth2/3 +nxos2.madeupdomain.com Eth2/4 120 BR Eth2/4 +Total entries displayed: 4 diff --git a/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json new file mode 100644 index 000000000..d5d34c412 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/expected_result.json @@ -0,0 +1,50 @@ +{ + "Eth2/2": [ + { + "remote_port_description": "Ethernet2/2", + "remote_system_description": "Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00", + "remote_chassis_id": "2C:C2:60:64:E1:5F", + "remote_system_enable_capab": "B, R", + "remote_port": "Ethernet2/2", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "nxos2.madeupdomain.com" + } + ], + "Eth2/3": [ + { + "remote_port_description": "Ethernet2/3", + "remote_system_description": "Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00", + "remote_chassis_id": "2C:C2:60:72:61:7B", + "remote_system_enable_capab": "B, R", + "remote_port": "Ethernet2/3", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "nxos2.madeupdomain.com" + } + ], + "Eth2/1": [ + { + "remote_port_description": "Ethernet2/1", + "remote_system_description": "Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00", + "remote_chassis_id": "2C:C2:60:54:DC:2C", + "remote_system_enable_capab": "B, R", + "remote_port": "Ethernet2/1", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "nxos2.madeupdomain.com" + } + ], + "Eth2/4": [ + { + "remote_port_description": "Ethernet2/4", + "remote_system_description": "Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00", + "remote_chassis_id": "2C:C2:60:70:69:DA", + "remote_system_enable_capab": "B, R", + "remote_port": "Ethernet2/4", + "parent_interface": "", + "remote_system_capab": "B, R", + "remote_system_name": "nxos2.madeupdomain.com" + } + ] +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.txt b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.txt new file mode 100644 index 000000000..00bbb0cb0 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_lldp_neighbors_detail/normal/show_lldp_neighbors_detail.txt @@ -0,0 +1,49 @@ +Capability codes: + (R) Router, (B) Bridge, (T) Telephone, (C) DOCSIS Cable Device + (W) WLAN Access Point, (P) Repeater, (S) Station, (O) Other +Device ID Local Intf Hold-time Capability Port ID +Chassis id: 2cc2.6054.dc2c +Port id: Eth2/1 +Local Port id: Eth2/1 +Port Description: Ethernet2/1 +System Name: nxos2.madeupdomain.com +System Description: Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00 +Time remaining: 104 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.0.0.72 +Vlan ID: not advertised +Chassis id: 2cc2.6064.e15f +Port id: Eth2/2 +Local Port id: Eth2/2 +Port Description: Ethernet2/2 +System Name: nxos2.madeupdomain.com +System Description: Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00 +Time remaining: 112 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.0.0.72 +Vlan ID: not advertised +Chassis id: 2cc2.6072.617b +Port id: Eth2/3 +Local Port id: Eth2/3 +Port Description: Ethernet2/3 +System Name: nxos2.madeupdomain.com +System Description: Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00 +Time remaining: 112 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.0.0.72 +Vlan ID: not advertised +Chassis id: 2cc2.6070.69da +Port id: Eth2/4 +Local Port id: Eth2/4 +Port Description: Ethernet2/4 +System Name: nxos2.madeupdomain.com +System Description: Cisco NX-OS(tm) titanium, Software (titanium-d1), Version 7.3(1)D1(1), Interim version 7.3(1)D1(0.10), RELEASE SOFTWARE Copyright (c) 2002-2013, 2015 by Cisco Systems, Inc. Compiled 1/11/2016 16:00:00 +Time remaining: 112 seconds +System Capabilities: B, R +Enabled Capabilities: B, R +Management Address: 10.0.0.72 +Vlan ID: not advertised +Total entries displayed: 4 diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/expected_result.json new file mode 100644 index 000000000..e274f128e --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/expected_result.json @@ -0,0 +1,155 @@ +[ + { + "vlan": 110, + "last_move": -1, + "interface": "Po28", + "mac": "00:18:74:1C:40:00", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 202, + "last_move": -1, + "interface": "Eth51/1/11", + "mac": "00:50:56:9A:7B:6B", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 986, + "last_move": -1, + "interface": "Po28", + "mac": "00:00:0C:07:AC:F0", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 989, + "last_move": -1, + "interface": "Po28", + "mac": "00:00:0C:07:AC:EF", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 989, + "last_move": -1, + "interface": "Po28", + "mac": "00:18:74:1C:40:00", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 393, + "last_move": -1, + "interface": "Eth51/1/16", + "mac": "00:1B:4F:03:56:20", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 393, + "last_move": -1, + "interface": "Eth51/1/16", + "mac": "00:1B:4F:11:2C:7C", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 299, + "last_move": -1, + "interface": "Eth52/1/29", + "mac": "00:CA:FE:19:47:76", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 358, + "last_move": -1, + "interface": "Eth52/1/4", + "mac": "00:CA:FE:31:68:82", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 393, + "last_move": -1, + "interface": "Eth51/1/16", + "mac": "00:CA:FE:54:21:07", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 388, + "last_move": -1, + "interface": "Po28", + "mac": "00:50:56:9F:79:30", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 299, + "last_move": -1, + "interface": "Eth52/1/30", + "mac": "00:50:56:9F:7A:74", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 388, + "last_move": -1, + "interface": "Po28", + "mac": "00:50:56:9F:7B:98", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 299, + "last_move": -1, + "interface": "Eth52/1/26", + "mac": "00:50:56:9F:7B:A2", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 388, + "last_move": -1, + "interface": "Po28", + "mac": "00:50:56:9F:7E:9A", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 388, + "last_move": -1, + "interface": "Po28", + "mac": "00:50:56:9F:7E:E5", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 388, + "last_move": -1, + "interface": "Po28", + "mac": "00:50:56:9F:7F:02", + "static": false, + "active": true, + "moves": -1 + } +] diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/show_mac_address_table.txt b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/show_mac_address_table.txt new file mode 100644 index 000000000..b792d8726 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/alternate/show_mac_address_table.txt @@ -0,0 +1,27 @@ +Legend: + * - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC + age - seconds since last seen,+ - primary entry using vPC Peer-Link + VLAN MAC Address Type age Secure NTFY Ports/SWID.SSID.LID +---------+-----------------+--------+---------+------+----+------------------ +* 110 0018.741c.4000 dynamic 0 F F Po28 +* 202 0050.569a.7b6b dynamic 0 F F Eth51/1/11 +* 986 0000.0c07.acf0 dynamic 300 F F Po28 +* 989 0000.0c07.acef dynamic 300 F F Po28 +* 989 0018.741c.4000 dynamic 10 F F Po28 +* 393 001b.4f03.5620 dynamic 70 F F Eth51/1/16 +* 393 001b.4f11.2c7c dynamic 220 F F Eth51/1/16 +* 299 00ca.fe19.4776 dynamic 300 F F Eth52/1/29 +* 358 00ca.fe31.6882 dynamic 0 F F Eth52/1/4 +* 393 00ca.fe54.2107 dynamic 300 F F Eth51/1/16 +Legend: + * - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC + age - seconds since last seen,+ - primary entry using vPC Peer-Link + VLAN MAC Address Type age Secure NTFY Ports/SWID.SSID.LID +---------+-----------------+--------+---------+------+----+------------------ +* 388 0050.569f.7930 dynamic 10 F F Po28 +* 299 0050.569f.7a74 dynamic 10 F F Eth52/1/30 +* 388 0050.569f.7b98 dynamic 10 F F Po28 +* 299 0050.569f.7ba2 dynamic 300 F F Eth52/1/26 +* 388 0050.569f.7e9a dynamic 30 F F Po28 +* 388 0050.569f.7ee5 dynamic 20 F F Po28 +* 388 0050.569f.7f02 dynamic 300 F F Po28 diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/expected_result.json new file mode 100644 index 000000000..89812d97a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/expected_result.json @@ -0,0 +1,11 @@ +[ + { + "interface": "sup-eth1(R)", + "moves": -1, + "static": true, + "last_move": -1.0, + "vlan": 0, + "active": false, + "mac": "2C:C2:60:5E:5D:E8" + } +] diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/show_mac_address_table.txt b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/show_mac_address_table.txt new file mode 100644 index 000000000..17de17b93 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/gateway_mac/show_mac_address_table.txt @@ -0,0 +1,10 @@ + Note: MAC table entries displayed are getting read from software. + Use the 'hardware-age' keyword to get information related to 'Age' + + Legend: + * - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC + age - seconds since last seen,+ - primary entry using vPC Peer-Link, E - EVPN entry + (T) - True, (F) - False , ~~~ - use 'hardware-age' keyword to retrieve age info + VLAN/BD MAC Address Type age Secure NTFY Ports/SWID.SSID.LID +---------+-----------------+--------+---------+------+----+------------------ +G - 2cc2.605e.5de8 static - F F sup-eth1(R) diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/expected_result.json new file mode 100644 index 000000000..575cde994 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/expected_result.json @@ -0,0 +1,119 @@ +[ + { + "vlan": 27, + "last_move": -1, + "interface": "po1", + "mac": "00:26:F0:64:00:00", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 27, + "last_move": -1, + "interface": "po1", + "mac": "00:1B:54:C2:26:44", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 27, + "last_move": -1, + "interface": "po1", + "mac": "00:00:0C:9F:F2:BC", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 27, + "last_move": -1, + "interface": "po1", + "mac": "00:26:98:0A:DF:44", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 16, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:01:64", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 16, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:25:77", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 16, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:CC:CF", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 33, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:CC:CF", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 17, + "last_move": -1, + "interface": "po2", + "mac": "00:26:98:0A:DF:44", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 17, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:BA:9A", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 40, + "last_move": -1, + "interface": "po2", + "mac": "00:50:56:BB:F5:32", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 13, + "last_move": -1, + "interface": "eth1/2", + "mac": "90:E2:BA:5A:9F:30", + "static": false, + "active": true, + "moves": -1 + }, + { + "vlan": 13, + "last_move": -1, + "interface": "eth1/1", + "mac": "90:E2:BA:4B:FC:78", + "static": false, + "active": true, + "moves": -1 + } +] diff --git a/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/show_mac_address_table.txt b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/show_mac_address_table.txt new file mode 100644 index 000000000..cca0aa8bf --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_mac_address_table/normal/show_mac_address_table.txt @@ -0,0 +1,19 @@ +Legend: +* - primary entry, G - Gateway MAC, (R) - Routed MAC, O - Overlay MAC +age - seconds since last seen,+ - primary entry using vPC Peer-Link, +(T) - True, (F) - False + VLAN MAC Address Type age Secure NTFY Ports/SWID.SSID.LID +---------+-----------------+--------+---------+------+----+------------------ +* 27 0026.f064.0000 dynamic - F F po1 +* 27 001b.54c2.2644 dynamic - F F po1 +* 27 0000.0c9f.f2bc dynamic - F F po1 +* 27 0026.980a.df44 dynamic - F F po1 +* 16 0050.56bb.0164 dynamic - F F po2 +* 16 0050.56bb.2577 dynamic - F F po2 +* 16 0050.56bb.cccf dynamic - F F po2 +* 33 0050.56bb.cccf dynamic - F F po2 +* 17 0026.980a.df44 dynamic - F F po2 +* 17 0050.56bb.ba9a dynamic - F F po2 +* 40 0050.56bb.f532 dynamic - F F po2 +* 13 90e2.ba5a.9f30 dynamic - F F eth1/2 +* 13 90e2.ba4b.fc78 dynamic - F F eth1/1 diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/expected_result.json new file mode 100644 index 000000000..bad02a7bf --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/expected_result.json @@ -0,0 +1,5 @@ +{ + "172.20.74.71": {}, + "172.24.176.244": {}, + "172.31.125.136": {} +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/show_ntp_peers.txt b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/show_ntp_peers.txt new file mode 100644 index 000000000..9224b7c71 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/5548_6_0_2/show_ntp_peers.txt @@ -0,0 +1,6 @@ +-------------------------------------------------- + Peer IP Address Serv/Peer +-------------------------------------------------- + 172.20.74.71 Server (configured) + 172.24.176.244 Server (configured) + 172.31.125.136 Server (configured) diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/expected_result.json new file mode 100644 index 000000000..1b829832a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/expected_result.json @@ -0,0 +1 @@ +{"130.126.24.24": {}, "152.2.21.1": {}} diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.txt b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.txt new file mode 100644 index 000000000..bb3ec983e --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_peers/normal/show_ntp_peers.txt @@ -0,0 +1,5 @@ +-------------------------------------------------- + Peer IP Address Serv/Peer +-------------------------------------------------- + 152.2.21.1 Server (configured) + 130.126.24.24 Server (configured) diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/expected_result.json new file mode 100644 index 000000000..1b829832a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/expected_result.json @@ -0,0 +1 @@ +{"130.126.24.24": {}, "152.2.21.1": {}} diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.txt b/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.txt new file mode 100644 index 000000000..bb3ec983e --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_servers/normal/show_ntp_peers.txt @@ -0,0 +1,5 @@ +-------------------------------------------------- + Peer IP Address Serv/Peer +-------------------------------------------------- + 152.2.21.1 Server (configured) + 130.126.24.24 Server (configured) diff --git a/test_base/nxos_ssh/mocked_data/test_get_ntp_stats/normal/show_ntp_peer_status.txt b/test_base/nxos_ssh/mocked_data/test_get_ntp_stats/normal/show_ntp_peer_status.txt new file mode 100644 index 000000000..116b4cdd4 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_ntp_stats/normal/show_ntp_peer_status.txt @@ -0,0 +1,8 @@ +Total peers : 3 +* - selected for sync, + - peer mode(active), +- - peer mode(passive), = - polled in client mode + remote local st poll reach delay vrf +------------------------------------------------------------------------------- +=172.20.74.71 200.101.205.54 3 64 377 0.25079 management +*172.24.176.244 200.101.205.54 3 64 377 0.10475 management +=172.31.125.136 200.101.205.54 3 64 377 0.00081 management diff --git a/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/expected_result.json new file mode 100644 index 000000000..7db736ab7 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/expected_result.json @@ -0,0 +1 @@ +{"contact": "Kirk Byers", "location": "Freemont, CA", "community": {"bogus123": {"mode": "network-operator", "acl": ""}}, "chassis_id": ""} diff --git a/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/show_running_config.txt b/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/show_running_config.txt new file mode 100644 index 000000000..8a011a6cd --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_snmp_information/normal/show_running_config.txt @@ -0,0 +1,675 @@ +!Command: show running-config +!Time: Sun Aug 6 16:43:18 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Kirk Byers +snmp-server location Freemont, CA +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community bogus123 group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_get_users/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_get_users/normal/expected_result.json new file mode 100644 index 000000000..171958d0a --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_users/normal/expected_result.json @@ -0,0 +1,9 @@ +{"admin": + {"password": "$5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7", + "sshkeys": [], + "level": 15}, + "pyclass": + {"password": "$5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4", + "sshkeys": [], + "level": 15} +} diff --git a/test_base/nxos_ssh/mocked_data/test_get_users/normal/show_running_config.txt b/test_base/nxos_ssh/mocked_data/test_get_users/normal/show_running_config.txt new file mode 100644 index 000000000..8a011a6cd --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_get_users/normal/show_running_config.txt @@ -0,0 +1,675 @@ +!Command: show running-config +!Time: Sun Aug 6 16:43:18 2017 +version 7.3(1)D1(1) +power redundancy-mode redundant +license grace-period +hostname nxos1 +vdc nxos1 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 +feature telnet +feature scp-server +cfs eth distribute +feature bgp +feature interface-vlan +feature hsrp +feature vpc +feature lldp +feature nxapi +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username pyclass password 5 $5$tGpa9bmJ$7I3Bg.0yqiweZ09vmj.gb7Q2antjGVs9J0nWSawvP/4 role network-admin +username pyclass passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +ip domain-name madeupdomain.com +ip name-server 8.8.8.8 8.8.4.4 +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server contact Kirk Byers +snmp-server location Freemont, CA +snmp-server user pyclass network-admin auth md5 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 priv 0xd1e3bf7019f3a9c3ee4dccd381f0e4f3 localizedkey +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server community bogus123 group network-operator +ntp server 130.126.24.24 +ntp server 152.2.21.1 +vlan 1,301-304,550-552,559 +vlan 301 + name BLUE_DIAMOND +vlan 302 + name RED_DIAMOND +vlan 303 + name GREEN_DIAMOND +vlan 304 + name YELLOW_DIAMOND +vlan 550 + name BLACK +vlan 551 + name ORANGE +vlan 552 + name PINK +vlan 559 + name BROWN +vrf context management + ip route 0.0.0.0/0 10.0.0.2 +interface mgmt0 + vrf member management + ip address 10.0.0.71/24 +interface Vlan1 +interface Ethernet2/1 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.10.10.10/24 + no shutdown +interface Ethernet2/2 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.100.1/24 + ipv6 address 2001::db8:1010:200c:1/64 + no shutdown +interface Ethernet2/3 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/4 + no switchport + mac-address 2cc2.604f.feb2 + ip address 10.100.17.1/24 + no shutdown +interface Ethernet2/5 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/6 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/7 + no switchport + mac-address 2cc2.604f.feb2 + no shutdown +interface Ethernet2/8 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/9 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/10 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/11 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/12 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/13 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/14 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/15 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/16 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/17 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/18 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/19 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/20 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/21 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/22 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/23 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/24 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/25 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/26 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/27 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/28 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/29 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/30 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/31 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/32 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/33 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/34 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/35 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/36 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/37 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/38 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/39 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/40 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/41 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/42 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/43 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/44 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/45 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/46 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/47 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet2/48 + shutdown + no switchport + mac-address 2cc2.604f.feb2 +interface Ethernet3/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet3/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/1 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/2 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/3 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/4 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/5 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/6 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/7 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/8 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/9 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/10 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/11 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/12 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/13 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/14 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/15 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/16 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/17 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/18 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/19 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/20 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/21 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/22 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/23 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/24 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/25 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/26 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/27 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/28 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/29 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/30 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/31 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/32 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/33 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/34 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/35 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/36 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/37 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/38 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/39 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/40 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/41 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/42 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/43 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/44 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/45 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/46 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/47 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface Ethernet4/48 + shutdown + no switchport + mac-address 000c.29d1.d56b +interface loopback0 + ip address 1.1.2.225/32 + ipv6 address 2001:db8::225/64 +interface loopback55 + ip address 1.1.1.37/24 + ipv6 address 2001:db8::37/32 +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +router bgp 22 + neighbor 10.100.17.2 remote-as 22 + address-family ipv4 unicast +no system default switchport shutdown +nxapi https port 8443 +nxapi sandbox +logging module 4 +logging monitor 4 +no logging console +logging history size 400 diff --git a/test_base/nxos_ssh/mocked_data/test_is_alive/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_is_alive/normal/expected_result.json new file mode 100644 index 000000000..62b92f16f --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_is_alive/normal/expected_result.json @@ -0,0 +1,3 @@ +{ + "is_alive": true +} diff --git a/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/expected_result.json b/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/expected_result.json new file mode 100644 index 000000000..d3c28e810 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/expected_result.json @@ -0,0 +1,346 @@ +{ + "success": { + "11": { + "probes": { + "1": { + "rtt": 1336.28, + "ip_address": "54.239.111.44", + "host_name": "54.239.111.44" + }, + "3": { + "rtt": 3.675, + "ip_address": "54.239.108.135", + "host_name": "54.239.108.135" + }, + "2": { + "rtt": 21.99, + "ip_address": "54.239.108.132", + "host_name": "54.239.108.132" + } + } + }, + "10": { + "probes": { + "1": { + "rtt": 12.015, + "ip_address": "54.239.108.98", + "host_name": "54.239.108.98" + }, + "3": { + "rtt": 2.14, + "ip_address": "52.93.24.93", + "host_name": "52.93.24.93" + }, + "2": { + "rtt": 3.501, + "ip_address": "52.93.24.95", + "host_name": "52.93.24.95" + } + } + }, + "13": { + "probes": { + "1": { + "rtt": 3.789, + "ip_address": "72.14.203.120", + "host_name": "72.14.203.120" + }, + "3": { + "rtt": 3.462, + "ip_address": "72.14.212.130", + "host_name": "72.14.212.130" + }, + "2": { + "rtt": 3.771, + "ip_address": "108.170.240.112", + "host_name": "108.170.240.112" + } + } + }, + "12": { + "probes": { + "1": { + "rtt": 4.457, + "ip_address": "54.239.108.103", + "host_name": "54.239.108.103" + }, + "3": { + "rtt": 3.808, + "ip_address": "72.14.212.130", + "host_name": "72.14.212.130" + }, + "2": { + "rtt": 3.895, + "ip_address": "54.239.108.203", + "host_name": "54.239.108.203" + } + } + }, + "15": { + "probes": { + "1": { + "rtt": 13.159, + "ip_address": "216.239.48.6", + "host_name": "216.239.48.6" + }, + "3": { + "rtt": 10.388, + "ip_address": "216.239.48.9", + "host_name": "216.239.48.9" + }, + "2": { + "rtt": 10.625, + "ip_address": "216.239.48.9", + "host_name": "216.239.48.9" + } + } + }, + "14": { + "probes": { + "1": { + "rtt": 6.822, + "ip_address": "108.170.246.67", + "host_name": "108.170.246.67" + }, + "3": { + "rtt": 4.119, + "ip_address": "108.170.246.49", + "host_name": "108.170.246.49" + }, + "2": { + "rtt": 4.376, + "ip_address": "108.170.246.48", + "host_name": "108.170.246.48" + } + } + }, + "17": { + "probes": { + "1": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + }, + "3": { + "rtt": 9.877, + "ip_address": "216.239.49.77", + "host_name": "216.239.49.77" + }, + "2": { + "rtt": 9.733, + "ip_address": "72.14.234.53", + "host_name": "72.14.234.53" + } + } + }, + "16": { + "probes": { + "1": { + "rtt": 10.355, + "ip_address": "216.239.48.31", + "host_name": "216.239.48.31" + }, + "3": { + "rtt": 10.665, + "ip_address": "216.239.48.9", + "host_name": "216.239.48.9" + }, + "2": { + "rtt": 10.139, + "ip_address": "216.239.47.184", + "host_name": "216.239.47.184" + } + } + }, + "18": { + "probes": { + "1": { + "rtt": 9.692, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + }, + "3": { + "rtt": 10.121, + "ip_address": "*", + "host_name": "*" + }, + "2": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + } + } + }, + "1": { + "probes": { + "1": { + "rtt": 1.588, + "ip_address": "10.0.0.2", + "host_name": "10.0.0.2" + }, + "3": { + "rtt": 1.388, + "ip_address": "10.0.0.2", + "host_name": "10.0.0.2" + }, + "2": { + "rtt": 1.409, + "ip_address": "10.0.0.2", + "host_name": "10.0.0.2" + } + } + }, + "3": { + "probes": { + "1": { + "rtt": 17.02, + "ip_address": "216.182.226.84", + "host_name": "216.182.226.84" + }, + "3": { + "rtt": 20.373, + "ip_address": "216.182.226.82", + "host_name": "216.182.226.82" + }, + "2": { + "rtt": 14.867, + "ip_address": "216.182.226.86", + "host_name": "216.182.226.86" + } + } + }, + "2": { + "probes": { + "1": { + "rtt": 1.45, + "ip_address": "100.96.0.1", + "host_name": "100.96.0.1" + }, + "3": { + "rtt": 1.456, + "ip_address": "100.96.0.1", + "host_name": "100.96.0.1" + }, + "2": { + "rtt": 1.468, + "ip_address": "100.96.0.1", + "host_name": "100.96.0.1" + } + } + }, + "5": { + "probes": { + "1": { + "rtt": 12.92, + "ip_address": "100.66.14.202", + "host_name": "100.66.14.202" + }, + "3": { + "rtt": 22.15, + "ip_address": "100.66.15.68", + "host_name": "100.66.15.68" + }, + "2": { + "rtt": 49.181, + "ip_address": "100.66.15.12", + "host_name": "100.66.15.12" + } + } + }, + "4": { + "probes": { + "1": { + "rtt": 11.3, + "ip_address": "100.66.12.176", + "host_name": "100.66.12.176" + }, + "3": { + "rtt": 16.02, + "ip_address": "100.66.8.52", + "host_name": "100.66.8.52" + }, + "2": { + "rtt": 20.989, + "ip_address": "100.66.8.254", + "host_name": "100.66.8.254" + } + } + }, + "7": { + "probes": { + "1": { + "rtt": 25.327, + "ip_address": "100.66.4.57", + "host_name": "100.66.4.57" + }, + "3": { + "rtt": 323.604, + "ip_address": "100.66.4.165", + "host_name": "100.66.4.165" + }, + "2": { + "rtt": 20.344, + "ip_address": "100.66.4.59", + "host_name": "100.66.4.59" + } + } + }, + "6": { + "probes": { + "1": { + "rtt": 16.2, + "ip_address": "100.66.6.239", + "host_name": "100.66.6.239" + }, + "3": { + "rtt": 16.651, + "ip_address": "100.66.6.67", + "host_name": "100.66.6.67" + }, + "2": { + "rtt": 21.379, + "ip_address": "100.66.7.135", + "host_name": "100.66.7.135" + } + } + }, + "9": { + "probes": { + "1": { + "rtt": 2.768, + "ip_address": "205.251.245.245", + "host_name": "205.251.245.245" + }, + "3": { + "rtt": 1.959, + "ip_address": "205.251.245.245", + "host_name": "205.251.245.245" + }, + "2": { + "rtt": 19.697, + "ip_address": "52.93.24.76", + "host_name": "52.93.24.76" + } + } + }, + "8": { + "probes": { + "1": { + "rtt": 3.845, + "ip_address": "100.65.10.129", + "host_name": "100.65.10.129" + }, + "3": { + "rtt": 1.737, + "ip_address": "100.65.9.97", + "host_name": "100.65.9.97" + }, + "2": { + "rtt": 3.121, + "ip_address": "100.65.9.225", + "host_name": "100.65.9.225" + } + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/traceroute_8_8_8_8.txt b/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/traceroute_8_8_8_8.txt new file mode 100755 index 000000000..22124f989 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_traceroute/alternate1/traceroute_8_8_8_8.txt @@ -0,0 +1,34 @@ +traceroute to 8.8.8.8 (8.8.8.8), 30 hops max, 40 byte packets + 1 10.0.0.2 (10.0.0.2) 1.588 ms 1.409 ms 1.388 ms + 2 100.96.0.1 (100.96.0.1) 1.45 ms 1.468 ms 1.456 ms + 3 216.182.226.84 (216.182.226.84) 17.02 ms 216.182.226.86 (216.182.226.86) 14.867 ms 216.182.226.82 (216.182.226.82) 20.373 ms + 4 100.66.12.176 (100.66.12.176) 11.3 ms 100.66.8.254 (100.66.8.254) 20.989 ms 100.66.8.52 (100.66.8.52) 16.02 ms + 5 100.66.14.202 (100.66.14.202) 12.92 ms 100.66.15.12 (100.66.15.12) 49.181 ms 100.66.15.68 (100.66.15.68) 22.15 ms + 6 100.66.6.239 (100.66.6.239) 16.2 ms 100.66.7.135 (100.66.7.135) 21.379 ms 100.66.6.67 (100.66.6.67) 16.651 ms + 7 100.66.4.57 (100.66.4.57) 25.327 ms 100.66.4.59 (100.66.4.59) 20.344 ms 100.66.4.165 (100.66.4.165) 323.604 ms + 8 100.65.10.129 (100.65.10.129) 3.845 ms 100.65.9.225 (100.65.9.225) 3.121 ms 100.65.9.97 (100.65.9.97) 1.737 ms + 9 205.251.245.245 (205.251.245.245) 2.768 ms 52.93.24.76 (52.93.24.76) 19.697 ms 205.251.245.245 (205.251.245.245) 1.959 ms + [No MPLS labels] + [Label=661791 E=0 TTL=1 S=1] + [No MPLS labels] +10 54.239.108.98 (54.239.108.98) 12.015 ms 52.93.24.95 (52.93.24.95) 3.501 ms 52.93.24.93 (52.93.24.93) 2.14 ms + [Label=311997 E=0 TTL=1 S=1] + [No MPLS labels] + [No MPLS labels] +11 54.239.111.44 (54.239.111.44) 1336.28 ms 54.239.108.132 (54.239.108.132) 21.99 ms 54.239.108.135 (54.239.108.135) 3.675 ms + [Label=303994 E=0 TTL=1 S=1] + [Label=310773 E=0 TTL=1 S=1] + [No MPLS labels] +12 54.239.108.103 (54.239.108.103) 4.457 ms 54.239.108.203 (54.239.108.203) 3.895 ms 72.14.212.130 (72.14.212.130) 3.808 ms +13 72.14.203.120 (72.14.203.120) 3.789 ms 108.170.240.112 (108.170.240.112) 3.771 ms 72.14.212.130 (72.14.212.130) 3.462 ms +14 108.170.246.67 (108.170.246.67) 6.822 ms 108.170.246.48 (108.170.246.48) 4.376 ms 108.170.246.49 (108.170.246.49) 4.119 ms +15 216.239.48.6 (216.239.48.6) 13.159 ms 216.239.48.9 (216.239.48.9) 10.625 ms 10.388 ms + [Label=463393 E=4 TTL=1 S=1] + [Label=26361 E=4 TTL=1 S=1] + [Label=27407 E=4 TTL=1 S=1] +16 216.239.48.31 (216.239.48.31) 10.355 ms 216.239.47.184 (216.239.47.184) 10.139 ms 216.239.48.9 (216.239.48.9) 10.665 ms + [Label=284874 E=4 TTL=1 S=1] + [No MPLS labels] + [Label=27225 E=4 TTL=1 S=1] +17 * 72.14.234.53 (72.14.234.53) 9.733 ms 216.239.49.77 (216.239.49.77) 9.877 ms +18 8.8.8.8 (8.8.8.8) 9.692 ms * 10.121 ms diff --git a/test_base/nxos_ssh/mocked_data/test_traceroute/normal/expected_result.json b/test_base/nxos_ssh/mocked_data/test_traceroute/normal/expected_result.json new file mode 100644 index 000000000..e8bf93e82 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_traceroute/normal/expected_result.json @@ -0,0 +1,213 @@ +{ + "success": { + "1": { + "probes": { + "1": { + "rtt": 0.743, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + }, + "3": { + "rtt": 0.876, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + }, + "2": { + "rtt": 0.838, + "ip_address": "162.158.136.17", + "host_name": "162.158.136.17" + } + } + }, + "2": { + "probes": { + "1": { + "rtt": 1.485, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + }, + "3": { + "rtt": 1.289, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + }, + "2": { + "rtt": 1.32, + "ip_address": "120.28.9.249", + "host_name": "120.28.9.249" + } + } + }, + "3": { + "probes": { + "1": { + "rtt": 4.087, + "ip_address": "120.28.10.210", + "host_name": "120.28.10.210" + }, + "3": { + "rtt": 2.208, + "ip_address": "120.28.10.110", + "host_name": "120.28.10.110" + }, + "2": { + "rtt": 2.244, + "ip_address": "120.28.10.110", + "host_name": "120.28.10.110" + } + } + }, + "4": { + "probes": { + "1": { + "rtt": 20.469, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + }, + "3": { + "rtt": 19.707, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + }, + "2": { + "rtt": 19.851, + "ip_address": "120.28.10.26", + "host_name": "120.28.10.26" + } + } + }, + "5": { + "probes": { + "1": { + "rtt": 63.815, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + }, + "3": { + "rtt": 63.643, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + }, + "2": { + "rtt": 64.007, + "ip_address": "72.14.196.29", + "host_name": "72.14.196.29" + } + } + }, + "6": { + "probes": { + "1": { + "rtt": 42.586, + "ip_address": "209.85.248.60", + "host_name": "209.85.248.60" + }, + "3": { + "rtt": 42.671, + "ip_address": "209.85.248.60", + "host_name": "209.85.248.60" + }, + "2": { + "rtt": 42.935, + "ip_address": "209.85.248.62", + "host_name": "209.85.248.62" + } + } + }, + "7": { + "probes": { + "1": { + "rtt": 65.392, + "ip_address": "216.239.40.11", + "host_name": "216.239.40.11" + }, + "3": { + "rtt": 66.382, + "ip_address": "216.239.40.13", + "host_name": "216.239.40.13" + }, + "2": { + "rtt": 65.163, + "ip_address": "209.85.142.185", + "host_name": "209.85.142.185" + } + } + }, + "8": { + "probes": { + "1": { + "rtt": 54.821, + "ip_address": "216.239.41.7", + "host_name": "216.239.41.7" + }, + "3": { + "rtt": 55.445, + "ip_address": "209.85.246.249", + "host_name": "209.85.246.249" + }, + "2": { + "rtt": 68.091, + "ip_address": "209.85.245.58", + "host_name": "209.85.245.58" + } + } + }, + "9": { + "probes": { + "1": { + "rtt": 80.656, + "ip_address": "209.85.250.103", + "host_name": "209.85.250.103" + }, + "3": { + "rtt": 81.107, + "ip_address": "209.85.243.21", + "host_name": "209.85.243.21" + }, + "2": { + "rtt": 79.578, + "ip_address": "209.85.243.218", + "host_name": "209.85.243.218" + } + } + }, + "10": { + "probes": { + "1": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + }, + "3": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + }, + "2": { + "rtt": 5000.0, + "ip_address": "*", + "host_name": "*" + } + } + }, + "11": { + "probes": { + "1": { + "rtt": 81.639, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + }, + "3": { + "rtt": 81.349, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + }, + "2": { + "rtt": 80.51, + "ip_address": "8.8.8.8", + "host_name": "8.8.8.8" + } + } + } + } +} diff --git a/test_base/nxos_ssh/mocked_data/test_traceroute/normal/traceroute_8_8_8_8.txt b/test_base/nxos_ssh/mocked_data/test_traceroute/normal/traceroute_8_8_8_8.txt new file mode 100755 index 000000000..d0a027050 --- /dev/null +++ b/test_base/nxos_ssh/mocked_data/test_traceroute/normal/traceroute_8_8_8_8.txt @@ -0,0 +1,17 @@ + 1 162.158.136.17 (162.158.136.17) 0.743 ms 0.838 ms 0.876 ms + 2 120.28.9.249 (120.28.9.249) 1.485 ms 1.32 ms 1.289 ms + 3 120.28.10.210 (120.28.10.210) 4.087 ms 120.28.10.110 (120.28.10.110) 2.244 ms 2.208 ms + 4 120.28.10.26 (120.28.10.26) 20.469 ms 19.851 ms 19.707 ms + 5 72.14.196.29 (72.14.196.29) 63.815 ms 64.007 ms 63.643 ms + 6 209.85.248.60 (209.85.248.60) 42.586 ms 209.85.248.62 (209.85.248.62) 42.935 ms 209.85.248.60 (209.85.248.60) 42.671 ms + 7 216.239.40.11 (216.239.40.11) 65.392 ms 209.85.142.185 (209.85.142.185) 65.163 ms 216.239.40.13 (216.239.40.13) 66.382 ms + [Label=450492 E=4 TTL=1 S=1] + [Label=24923 E=4 TTL=1 S=1] + [Label=429804 E=4 TTL=1 S=1] + 8 216.239.41.7 (216.239.41.7) 54.821 ms 209.85.245.58 (209.85.245.58) 68.091 ms 209.85.246.249 (209.85.246.249) 55.445 ms + [Label=26613 E=4 TTL=1 S=1] + [No MPLS labels] + [Label=407253 E=4 TTL=1 S=1] + 9 209.85.250.103 (209.85.250.103) 80.656 ms 209.85.243.218 (209.85.243.218) 79.578 ms 209.85.243.21 (209.85.243.21) 81.107 ms +10 * * * +11 8.8.8.8 (8.8.8.8) 81.639 ms 80.51 ms 81.349 ms diff --git a/test_base/nxos_ssh/nxos/initial.conf b/test_base/nxos_ssh/nxos/initial.conf new file mode 100644 index 000000000..49a9f79dc --- /dev/null +++ b/test_base/nxos_ssh/nxos/initial.conf @@ -0,0 +1,1130 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Wed Dec 14 13:55:40 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine2 +vdc nxos-spine2 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.72/24 + +interface Vlan1 + +interface Ethernet2/1 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + ip address 4.3.2.1/24 + no shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos_ssh/nxos/merge_good.conf b/test_base/nxos_ssh/nxos/merge_good.conf new file mode 100644 index 000000000..3b6de61a6 --- /dev/null +++ b/test_base/nxos_ssh/nxos/merge_good.conf @@ -0,0 +1,5 @@ +hostname nxos-spine22 +no feature hsrp +feature scp-server +vlan 111 + name NAPALM diff --git a/test_base/nxos_ssh/nxos/merge_good.diff b/test_base/nxos_ssh/nxos/merge_good.diff new file mode 100644 index 000000000..f239f02ff --- /dev/null +++ b/test_base/nxos_ssh/nxos/merge_good.diff @@ -0,0 +1,3 @@ +no vlan 111 +hostname nxos-spine2 +feature hsrp diff --git a/test_base/nxos_ssh/nxos/merge_typo.conf b/test_base/nxos_ssh/nxos/merge_typo.conf new file mode 100644 index 000000000..5902408a7 --- /dev/null +++ b/test_base/nxos_ssh/nxos/merge_typo.conf @@ -0,0 +1,2 @@ +vlan 11111 + name NAPALM diff --git a/test_base/nxos_ssh/nxos/new_good.conf b/test_base/nxos_ssh/nxos/new_good.conf new file mode 100644 index 000000000..ed8b1121e --- /dev/null +++ b/test_base/nxos_ssh/nxos/new_good.conf @@ -0,0 +1,1132 @@ + +!Command: Checkpoint cmd vdc 1 +!Time: Wed Dec 14 11:34:03 2016 + +version 7.3(1)D1(1) +power redundancy-mode redundant + +hostname nxos-spine2 +vdc nxos-spine2 id 1 + limit-resource module-type m1 m1xl m2xl f2e + allocate interface Ethernet2/1-48 + allocate interface Ethernet3/1-48 + allocate interface Ethernet4/1-48 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 96 maximum 96 + limit-resource u6route-mem minimum 24 maximum 24 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature scp-server +!#feature ssh +cfs eth distribute +feature interface-vlan +feature hsrp +feature vpc +feature nxapi + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +username admin password 5 $5$aH4ttsPk$kNH7qXBaegskBUekuymPzaL5Q0Vh/mQVSdw4tQ0AcU7 role network-admin +username ntc password 5 $5$xcNSvZMS$UBw5G51GWd.87viPKHxJop/ViJMd6.Up3FFiCk9X0I4 role network-admin +username ntc passphrase lifetime 99999 warntime 14 gracetime 3 +no password strength-check +ip domain-lookup +vlan dot1Q tag native +system default switchport +system jumbomtu 0 +no logging event trunk-status enable +copp profile strict +snmp-server user ntc auth md5 0xa9d0d61840e7fa692c3f196b2a5294de priv 0xa9d0d61840e7fa692c3f196b2a5294de localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +snmp-server user admin auth md5 0x9e902c388e9b4c616e7c7c98d1079325 priv 0x9e902c388e9b4c616e7c7c98d1079325 localizedkey engineID 128:0:0:9:3:0:12:41:209:213:60 +rmon event 1 log description FATAL(1) owner PMON@FATAL +rmon event 2 log description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log description ERROR(3) owner PMON@ERROR +rmon event 4 log description WARNING(4) owner PMON@WARNING +rmon event 5 log description INFORMATION(5) owner PMON@INFO +snmp-server enable traps link +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server community public group network-operator +snmp-server community networktocode group network-operator +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +vlan 1 +vlan100 +vrf context management + ip route 0.0.0.0/0 10.0.0.2 + +interface mgmt0 + vrf member management + ip address 10.0.0.72/24 + +interface Vlan1 + +interface Ethernet2/1 + switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + ip address 4.3.2.1/24 + shutdown + +interface Ethernet2/2 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/3 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/4 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/5 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/6 + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + no shutdown + +interface Ethernet2/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet2/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 2cc2.607d.5725 + +interface Ethernet3/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet3/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/1 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/2 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/3 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/4 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/5 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/6 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/7 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/8 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/9 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/10 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/11 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/12 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/13 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/14 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/15 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/16 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/17 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/18 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/19 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/20 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/21 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/22 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/23 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/24 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/25 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/26 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/27 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/28 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/29 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/30 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/31 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/32 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/33 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/34 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/35 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/36 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/37 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/38 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/39 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/40 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/41 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/42 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/43 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/44 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/45 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/46 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/47 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b + +interface Ethernet4/48 + shutdown + no switchport + !#logging event port link-status default + !#logging event port trunk-status default + mac-address 000c.29d1.d56b +line console +line vty +boot kickstart bootflash://sup-1/titanium-d1-kickstart.7.3.1.D1.0.10.bin +boot system bootflash://sup-1/titanium-d1.7.3.1.D1.0.10.bin +no system default switchport shutdown +nxapi http port 80 +nxapi https port 8443 +nxapi sandbox +!#logging monitor +!#logging module +!#logging console + + + diff --git a/test_base/nxos_ssh/nxos/new_good.diff b/test_base/nxos_ssh/nxos/new_good.diff new file mode 100644 index 000000000..aea0059fc --- /dev/null +++ b/test_base/nxos_ssh/nxos/new_good.diff @@ -0,0 +1,10 @@ +interface Ethernet2/1 + shutdown + no ip address 4.3.2.1/24 + switchport + exit +interface Ethernet2/1 + switchport + shutdown +exit +no system default switchport shutdown diff --git a/test_base/nxos_ssh/nxos/new_typo.conf b/test_base/nxos_ssh/nxos/new_typo.conf new file mode 100644 index 000000000..e50447fa8 --- /dev/null +++ b/test_base/nxos_ssh/nxos/new_typo.conf @@ -0,0 +1,856 @@ +!Command: Checkpoint cmd vdc 1 +!Time: Fri Nov 13 20:49:31 2015 + +version 7.0(3)I2(1) +hostname n9k1 +class-map type network-qos c-nq1 + description Default class on qos-group 1 +match qos-group 1 +class-map type network-qos c-nq2 + description Default class on qos-group 2 +match qos-group 2 +class-map type network-qos c-nq3 + description Default class on qos-group 3 +match qos-group 3 +class-map type network-qos c-nq-default + description Default class on qos-group 0 +match qos-group 0 +policy-map type network-qos default-nq-policy + class type network-qos c-nq3 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq2 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq1 + no pause pfc-cos 0 + mtu 1500 + class type network-qos c-nq-default + no pause pfc-cos 0 + mtu 1500 +vdc n9k1 id 1 + limit-resource vlan minimum 16 maximum 4094 + limit-resource vrf minimum 2 maximum 4096 + limit-resource port-channel minimum 0 maximum 768 + limit-resource u4route-mem minimum 248 maximum 248 + limit-resource u6route-mem minimum 96 maximum 96 + limit-resource m4route-mem minimum 58 maximum 58 + limit-resource m6route-mem minimum 8 maximum 8 + +feature nxapi +feature bash-shell +feature scp-server +!#feature ssh +cfs eth distribute +feature ospf +feature interface-vlan +feature hsrp +feature lacp +feature vpc +feature lldp + +no mac address-table notification mac-move + +role name priv-15 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-14 + description This is a system defined privilege role. + rule 1 permit read-write +role name priv-13 + description This is a system defined privilege role. +role name priv-12 + description This is a system defined privilege role. +role name priv-11 + description This is a system defined privilege role. +role name priv-10 + description This is a system defined privilege role. +role name priv-9 + description This is a system defined privilege role. +role name priv-8 + description This is a system defined privilege role. +role name priv-7 + description This is a system defined privilege role. +role name priv-6 + description This is a system defined privilege role. +role name priv-5 + description This is a system defined privilege role. +role name priv-4 + description This is a system defined privilege role. +role name priv-3 + description This is a system defined privilege role. +role name priv-2 + description This is a system defined privilege role. +role name priv-1 + description This is a system defined privilege role. +role name priv-0 + description This is a system defined privilege role. + rule 10 permit command traceroute6 * + rule 9 permit command traceroute * + rule 8 permit command telnet6 * + rule 7 permit command telnet * + rule 6 permit command ping6 * + rule 5 permit command ping * + rule 4 permit command ssh6 * + rule 3 permit command ssh * + rule 2 permit command enable * + rule 1 permit read +no password strength-check +username admin password 5 $5$QV/nmT13$e7qNNulbvwMZSaLQHkB66X6eXGTjMvvUrQ2wFIVwq02 role network-admin +username cisco password 5 $1$nGd5VWnS$LJ/a9ztNEt6xruMCG2Erl/ role network-admin +ip domain-lookup +ip domain-name cisconxapi.com +ip access-list acl-test + 10 permit ip 1.1.1.1/32 any + 20 permit ip 1.1.1.1/24 any + 30 permit tcp any neq finger any ack psh rst fin + 40 permit tcp 1.1.1.1/32 any + 50 permit tcp 1.1.1.1/32 range time bgp any + 60 permit tcp 1.1.1.1/32 addrgroup ciao + 70 permit tcp addrgroup ciao addrgroup ciao + 80 permit tcp any range www talk any urg log +mac access-list mac_acl_test + 10 permit 000e.000e.000e 000e.000e.000e 00aa.00aa.00aa 00aa.00ae.00ac aarp cos 0 +ip access-list test +ip access-list test-acl +!# qos statistics +!# class-map type queuing match-any c-out-q3 +!# match qos-group 3 +!# class-map type queuing match-any c-out-q2 +!# match qos-group 2 +!# class-map type queuing match-any c-out-q1 +!# match qos-group 1 +!# class-map type queuing match-any c-out-q-default +!# match qos-group 0 +!# class-map type queuing match-any c-in-q3 +!# match qos-group 3 +!# class-map type queuing match-any c-in-q2 +!# match qos-group 2 +!# class-map type queuing match-any c-in-q1 +!# match qos-group 1 +!# class-map type queuing match-any c-in-q-default +!# match qos-group 0 +policy-map type queuing default-out-policy + class type queuing c-out-q3 + priority level 1 + class type queuing c-out-q2 + bandwidth remaining percent 0 + class type queuing c-out-q1 + bandwidth remaining percent 0 + class type queuing c-out-q-default + bandwidth remaining percent 100 +copp profile strict +no system mode maintenance +snmp-server source-interface trap port-channel10 +snmp-server source-interface inform port-channel10 +snmp-server user admin network-admin auth md5 0xb38774329b48afb669c81b39ef5073d0 priv 0xb38774329b48afb669c81b39ef5073d0 localizedkey +snmp-server host 192.0.2.1 traps version 2c MYSTRING +snmp-server host 192.0.100.1 traps version 2c two +snmp-server host 192.0.100.1 source-interface mgmt0 +snmp-server host 1.1.1.1 informs version 3 auth JEDELMAN +rmon event 1 log trap public description FATAL(1) owner PMON@FATAL +rmon event 2 log trap public description CRITICAL(2) owner PMON@CRITICAL +rmon event 3 log trap public description ERROR(3) owner PMON@ERROR +rmon event 4 log trap public description WARNING(4) owner PMON@WARNING +rmon event 5 log trap public description INFORMATION(5) owner PMON@INFO +snmp-server enable traps callhome event-notify +snmp-server enable traps callhome smtp-send-fail +snmp-server enable traps cfs state-change-notif +snmp-server enable traps lldp lldpRemTablesChange +snmp-server enable traps cfs merge-failure +snmp-server enable traps aaa server-state-change +snmp-server enable traps hsrp state-change +snmp-server enable traps feature-control FeatureOpStatusChange +snmp-server enable traps sysmgr cseFailSwCoreNotifyExtended +snmp-server enable traps config ccmCLIRunningConfigChanged +snmp-server enable traps snmp authentication +snmp-server enable traps link cisco-xcvr-mon-status-chg +snmp-server enable traps vtp notifs +snmp-server enable traps vtp vlancreate +snmp-server enable traps vtp vlandelete +snmp-server enable traps bridge newroot +snmp-server enable traps storm-control +snmp-server enable traps bridge topologychange +snmp-server enable traps stpx inconsistency +snmp-server enable traps stpx root-inconsistency +snmp-server enable traps stpx loop-inconsistency +snmp-server enable traps system Clock-change-notification +snmp-server enable traps feature-control ciscoFeatOpStatusChange +snmp-server context T3sT-Con_text +snmp-server context T3sT-Con_text!!!! +snmp-server context C0n_text! +snmp-server community WEWORK group network-operator +snmp-server community Community_test-1 group network-operator +snmp-server community RW group network-admin +snmp-server community networktocode group network-operator +snmp-server community YANKS group network-admin +snmp-server community _Community_test-2 group network-operator +snmp-server mib community-map Community_test-1 context C0n_text! +snmp-server community Community_test-1 use-acl T3st-ACL#$ +snmp-server community YANKS use-acl my_acl +callhome + !#destination-profile CiscoTAC-1 message-level 0 + !#destination-profile full_txt message-level 0 + !#destination-profile short_txt message-level 0 + +ip route 0.0.0.0/0 10.1.100.1 vrf management +ip route 7.7.7.7/32 10.10.50.1 +vlan 1 +vlan 10 + name WEB_VLAN +vlan 11 + name vlan_11 +vlan 12 + name vlan_12 +vlan 20 + name DB_VLAN +vlan 30 +vlan 40 +vlan 50 +vlan 110 +vlan 120 + name w*$$eb_vlan +vlan 256 + name flask_vlan +vlan 2000 +vlan 3000 + +vrf context keepalive +vrf context management + ip domain-name cisconxapi.com + ip name-server 8.8.8.8 + ip route 0.0.0.0/0 10.1.100.1 +vpc domain 100 + role priority 1000 + system-priority 2000 + peer-keepalive destination 10.1.20.3 source 10.1.20.2 vrf keepalive + +interface Vlan1 + +interface Vlan5 + no shutdown + ip router ospf 10 area 0.0.0.5 + +interface Vlan10 + no shutdown + ip address 10.1.10.2/24 + hsrp version 2 + hsrp 10 + priority 120 forwarding-threshold lower 1 upper 120 + ip 10.1.10.1 + +interface Vlan20 + no shutdown + vrf member keepalive + ip address 10.1.20.2/24 + hsrp version 2 + hsrp 20 + priority 120 forwarding-threshold lower 1 upper 120 + ip 10.1.20.1 + +interface Vlan66 + ip address 66.66.66.66/24 + +interface Vlan77 + ip address 77.77.77.77/24 + +interface Vlan146 + description my vlan 146 + +interface port-channel10 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface port-channel11 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface port-channel12 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + spanning-tree port type network + !#logging event port link-status default + !#logging event port trunk-status default + vpc peer-link + !#no shutdown + +interface Ethernet1/1 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/2 + no switchport + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + ip address 192.168.56.1/24 + no shutdown + +interface Ethernet1/3 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/4 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/5 + no switchport + priority-flow-control mode auto + !#switchport trunk allowed vlan 1-4094 + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/6 + !#no switchport + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/7 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/8 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/9 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/10 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + +interface Ethernet1/11 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/12 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/13 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/14 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/15 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/16 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/17 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/18 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/19 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/20 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/21 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/22 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/23 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/24 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/25 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/26 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/27 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/28 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/29 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/30 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/31 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/32 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/33 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/34 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/35 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/36 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/37 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/38 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/39 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/40 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/41 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/42 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/43 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/44 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/45 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/46 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/47 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet1/48 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + !#no shutdown + +interface Ethernet2/1 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.10.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/2 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.30.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/3 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.20.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/4 + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + ip address 10.10.40.1/24 + ip router ospf 10 area 0.0.0.5 + no shutdown + +interface Ethernet2/5 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + channel-group 12 force mode active + !#no shutdown + +interface Ethernet2/6 + !#switchport + switchport mode trunk + switchport trunk native vlan 2 + switchport trunk allowed vlan 2-20 + priority-flow-control mode auto + !#logging event port link-status default + !#logging event port trunk-status default + channel-group 12 force mode active + !#no shutdown + +interface Ethernet2/7 + description matched n9k1.ntc.com + !#shutdown + no switchport + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + vrf member test + ip address 192.168.55.58/24 + +interface Ethernet2/8 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/9 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/10 + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + !#no shutdown + +interface Ethernet2/11 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + +interface Ethernet2/12 + shutdown + !#switchport + switchport mode access + !#switchport trunk allowed vlan 1-4094 + priority-flow-control mode auto + logging event port link-status + logging event port trunk-status + +interface mgmt0 + vrf member management + ip address 10.1.100.20/24 + +interface loopback0 + ip address 1.3.1.1/24 + !#no shutdown + +interface loopback10 + ip address 1.1.1.1/32 + ip router ospf 10 area 0.0.0.5 + !#no shutdown +line console +line vty + session-limit 16 + exec-timeout 0 +boot nxos bootflash:/nxos.7.0.3.I2.1.bin +router ospf 1 +router ospf myospf +mac address-table static 000e.000e.000e vlan 10 drop +no xml server exec-mode +!#logging monitor +!#logging module +!#logging console diff --git a/test_base/nxos_ssh/test_getters.py b/test_base/nxos_ssh/test_getters.py new file mode 100644 index 000000000..21af8bae3 --- /dev/null +++ b/test_base/nxos_ssh/test_getters.py @@ -0,0 +1,28 @@ +"""Tests for getters.""" + +from napalm.base.test.getters import BaseTestGetters, wrap_test_cases +from napalm.base.test import helpers +from napalm.base.test import models + +import pytest +from mock import patch + + +def mock_time(): + return 1500000000.000000 + + +@pytest.mark.usefixtures("set_device_parameters") +class TestGetter(BaseTestGetters): + """Test get_* methods.""" + @patch('time.time', mock_time) + @wrap_test_cases + def test_get_interfaces(self, test_case): + """Test get_interfaces.""" + get_interfaces = self.device.get_interfaces() + assert len(get_interfaces) > 0 + + for interface, interface_data in get_interfaces.items(): + assert helpers.test_model(models.interface, interface_data) + + return get_interfaces diff --git a/test_base/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl b/test_base/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl new file mode 100644 index 000000000..77f55ad2a --- /dev/null +++ b/test_base/nxos_ssh/utils/textfsm_templates/lldp_neighbors.tpl @@ -0,0 +1,9 @@ +Value NEIGHBOR (\S+) +Value LOCAL_INTERFACE (\S+) +Value NEIGHBOR_INTERFACE (\S+) + +Start + ^Device.*ID -> LLDP + +LLDP + ^${NEIGHBOR}\s+${LOCAL_INTERFACE}\s+\d+\s+[\w+\s]+\S+\s+${NEIGHBOR_INTERFACE} -> Record diff --git a/test_base/nxos_ssh/utils/textfsm_templates/snmp_config.tpl b/test_base/nxos_ssh/utils/textfsm_templates/snmp_config.tpl new file mode 100644 index 000000000..aa070fd53 --- /dev/null +++ b/test_base/nxos_ssh/utils/textfsm_templates/snmp_config.tpl @@ -0,0 +1,10 @@ +Value Location (.*) +Value Contact (.*) +Value Community (\S+) +Value Mode (network\-admin|network\-operator) +Value ACL (\S+) + +Start + ^snmp-server\slocation\s${Location} -> Record + ^snmp-server\scontact\s${Contact} -> Record + ^snmp-server\scommunity\s${Community}\s((group\s+${Mode}|use\-.+\s+${ACL})) -> Next.Record diff --git a/test_base/nxos_ssh/utils/textfsm_templates/users.tpl b/test_base/nxos_ssh/utils/textfsm_templates/users.tpl new file mode 100644 index 000000000..141fd5df3 --- /dev/null +++ b/test_base/nxos_ssh/utils/textfsm_templates/users.tpl @@ -0,0 +1,13 @@ +Value Username (\w+.*) +Value Password (.*) +Value Role (\w+.*) +Value SSHKeyType (ssh-rsa|ssh-dsa) +Value SSHKeyValue (\w+.*) + + +Start + ^username\s+${Username}\s+password\s+\d+\s+${Password}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+role\s+${Role} -> Record + ^username\s+${Username}\s+sshkey\s+${SSHKeyType}\s+${SSHKeyValue} -> Record + +EOF