From 806f43a9c0ef24be01678182a99fd7ea4ad595ef Mon Sep 17 00:00:00 2001 From: paulquack Date: Tue, 7 Nov 2017 19:19:56 +1100 Subject: [PATCH] ironware_facts module (#32186) --- .../network/ironware/ironware_facts.py | 652 ++++++++++ .../modules/network/ironware/fixtures/dir | 1 + .../network/ironware/fixtures/show_chassis | 45 + .../network/ironware/fixtures/show_interfaces | 1053 +++++++++++++++++ .../ironware/fixtures/show_ipv6_interface | 5 + .../ironware/fixtures/show_lldp_neighbors | 3 + .../network/ironware/fixtures/show_memory | 30 + .../ironware/fixtures/show_mpls_lsp_detail | 32 + .../fixtures/show_mpls_vll-local_detail | 7 + .../ironware/fixtures/show_mpls_vll_detail | 19 + .../ironware/fixtures/show_mpls_vpls_detail | 21 + .../ironware/fixtures/show_running-config | 291 +++++ .../network/ironware/fixtures/show_version | 408 +------ .../network/ironware/test_ironware_facts.py | 99 ++ 14 files changed, 2283 insertions(+), 383 deletions(-) create mode 100644 lib/ansible/modules/network/ironware/ironware_facts.py create mode 100644 test/units/modules/network/ironware/fixtures/dir create mode 100644 test/units/modules/network/ironware/fixtures/show_chassis create mode 100644 test/units/modules/network/ironware/fixtures/show_interfaces create mode 100644 test/units/modules/network/ironware/fixtures/show_ipv6_interface create mode 100644 test/units/modules/network/ironware/fixtures/show_lldp_neighbors create mode 100644 test/units/modules/network/ironware/fixtures/show_memory create mode 100644 test/units/modules/network/ironware/fixtures/show_mpls_lsp_detail create mode 100644 test/units/modules/network/ironware/fixtures/show_mpls_vll-local_detail create mode 100644 test/units/modules/network/ironware/fixtures/show_mpls_vll_detail create mode 100644 test/units/modules/network/ironware/fixtures/show_mpls_vpls_detail create mode 100644 test/units/modules/network/ironware/fixtures/show_running-config create mode 100644 test/units/modules/network/ironware/test_ironware_facts.py diff --git a/lib/ansible/modules/network/ironware/ironware_facts.py b/lib/ansible/modules/network/ironware/ironware_facts.py new file mode 100644 index 00000000000..e23e0ccbacd --- /dev/null +++ b/lib/ansible/modules/network/ironware/ironware_facts.py @@ -0,0 +1,652 @@ +#!/usr/bin/python +# +# Copyright: Ansible Project +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +from __future__ import absolute_import, division, print_function +__metaclass__ = type + + +ANSIBLE_METADATA = {'metadata_version': '1.1', + 'status': ['preview'], + 'supported_by': 'community'} + + +DOCUMENTATION = """ +--- +module: ironware_facts +version_added: "2.5" +author: "Paul Baker (@paulquack)" +short_description: Collect facts from devices running Brocade Ironware +description: + - Collects a base set of device facts from a remote device that + is running Ironware. This module prepends all of the + base network fact keys with C(ansible_net_). The facts + module will always collect a base set of facts from the device + and can enable or disable collection of additional facts. +extends_documentation_fragment: ironware +notes: + - Tested against Ironware 5.8e +options: + gather_subset: + description: + - When supplied, this argument will restrict the facts collected + to a given subset. Possible values for this argument include + all, hardware, config, mpls and interfaces. Can specify a list of + values to include a larger subset. Values can also be used + with an initial C(M(!)) to specify that a specific subset should + not be collected. + required: false + default: ['!config','!mpls'] +""" + +EXAMPLES = """ +# Collect all facts from the device +- ironware_facts: + gather_subset: all + +# Collect only the config and default facts +- ironware_facts: + gather_subset: + - config + +# Do not collect hardware facts +- ironware_facts: + gather_subset: + - "!hardware" +""" + +RETURN = """ +ansible_net_gather_subset: + description: The list of fact subsets collected from the device + returned: always + type: list + +# default +ansible_net_model: + description: The model name returned from the device + returned: always + type: str +ansible_net_serialnum: + description: The serial number of the remote device + returned: always + type: str +ansible_net_version: + description: The operating system version running on the remote device + returned: always + type: str + +# hardware +ansible_net_filesystems: + description: All file system names available on the device + returned: when hardware is configured + type: list +ansible_net_memfree_mb: + description: The available free memory on the remote device in Mb + returned: when hardware is configured + type: int +ansible_net_memtotal_mb: + description: The total memory on the remote device in Mb + returned: when hardware is configured + type: int + +# config +ansible_net_config: + description: The current active config from the device + returned: when config is configured + type: str + +# mpls +ansible_net_mpls_lsps: + description: All MPLS LSPs configured on the device + returned: When LSP is configured + type: dict +ansible_net_mpls_vll: + description: All VLL instances configured on the device + returned: When MPLS VLL is configured + type: dict +ansible_net_mpls_vll_local: + description: All VLL-LOCAL instances configured on the device + returned: When MPLS VLL-LOCAL is configured + type: dict +ansible_net_mpls_vpls: + description: All VPLS instances configured on the device + returned: When MPLS VPLS is configured + type: dict + +# interfaces +ansible_net_all_ipv4_addresses: + description: All IPv4 addresses configured on the device + returned: when interfaces is configured + type: list +ansible_net_all_ipv6_addresses: + description: All IPv6 addresses configured on the device + returned: when interfaces is configured + type: list +ansible_net_interfaces: + description: A hash of all interfaces running on the system + returned: when interfaces is configured + type: dict +ansible_net_neighbors: + description: The list of LLDP neighbors from the remote device + returned: when interfaces is configured + type: dict +""" +import re + +from ansible.module_utils.ironware import run_commands +from ansible.module_utils.ironware import ironware_argument_spec, check_args +from ansible.module_utils.basic import AnsibleModule +from ansible.module_utils.six import iteritems +from ansible.module_utils.six.moves import zip + + +class FactsBase(object): + + COMMANDS = list() + + def __init__(self, module): + self.module = module + self.facts = dict() + self.responses = None + + def populate(self): + self.responses = run_commands(self.module, self.COMMANDS, check_rc=False) + + def run(self, cmd): + return run_commands(self.module, cmd, check_rc=False) + + +class Default(FactsBase): + + COMMANDS = [ + 'show version', + 'show chassis' + ] + + def populate(self): + super(Default, self).populate() + data = self.responses[0] + if data: + self.facts['version'] = self.parse_version(data) + self.facts['serialnum'] = self.parse_serialnum(data) + + data = self.responses[1] + if data: + self.facts['model'] = self.parse_model(data) + + def parse_version(self, data): + match = re.search(r'IronWare : Version (\S+)', data) + if match: + return match.group(1) + + def parse_model(self, data): + match = re.search(r'^\*\*\* (.+) \*\*\*$', data, re.M) + if match: + return match.group(1) + + def parse_serialnum(self, data): + match = re.search(r'Serial #: (\S+),', data) + if match: + return match.group(1) + + +class Hardware(FactsBase): + + COMMANDS = [ + 'dir | include Directory', + 'show memory' + ] + + def populate(self): + super(Hardware, self).populate() + data = self.responses[0] + if data: + self.facts['filesystems'] = self.parse_filesystems(data) + + data = self.responses[1] + if data: + self.facts['memtotal_mb'] = int(round(int(self.parse_memtotal(data)) / 1024 / 1024, 0)) + self.facts['memfree_mb'] = int(round(int(self.parse_memfree(data)) / 1024 / 1024, 0)) + + def parse_filesystems(self, data): + return re.findall(r'^Directory of (\S+)', data, re.M) + + def parse_memtotal(self, data): + match = re.search(r'Total SDRAM\D*(\d+)\s', data, re.M) + if match: + return match.group(1) + + def parse_memfree(self, data): + match = re.search(r'(Total Free Memory|Available Memory)\D*(\d+)\s', data, re.M) + if match: + return match.group(2) + + +class Config(FactsBase): + + COMMANDS = ['show running-config'] + + def populate(self): + super(Config, self).populate() + data = self.responses[0] + if data: + self.facts['config'] = data + + +class MPLS(FactsBase): + + COMMANDS = [ + 'show mpls lsp detail', + 'show mpls vll-local detail', + 'show mpls vll detail', + 'show mpls vpls detail' + ] + + def populate(self): + super(MPLS, self).populate() + data = self.responses[0] + if data: + data = self.parse_mpls(data) + self.facts['mpls_lsps'] = self.populate_lsps(data) + + data = self.responses[1] + if data: + data = self.parse_mpls(data) + self.facts['mpls_vll_local'] = self.populate_vll_local(data) + + data = self.responses[2] + if data: + data = self.parse_mpls(data) + self.facts['mpls_vll'] = self.populate_vll(data) + + data = self.responses[3] + if data: + data = self.parse_mpls(data) + self.facts['mpls_vpls'] = self.populate_vpls(data) + + def parse_mpls(self, data): + parsed = dict() + for line in data.split('\n'): + if not line: + continue + elif line[0] == ' ': + parsed[key] += '\n%s' % line + else: + match = re.match(r'^(LSP|VLL|VPLS) ([^\s,]+)', line) + if match: + key = match.group(2) + parsed[key] = line + return parsed + + def populate_vpls(self, vpls): + facts = dict() + for key, value in iteritems(vpls): + vpls = dict() + vpls['endpoints'] = self.parse_vpls_endpoints(value) + vpls['vc-id'] = self.parse_vpls_vcid(value) + facts[key] = vpls + return facts + + def populate_vll_local(self, vll_locals): + facts = dict() + for key, value in iteritems(vll_locals): + vll = dict() + vll['endpoints'] = self.parse_vll_endpoints(value) + facts[key] = vll + return facts + + def populate_vll(self, vlls): + facts = dict() + for key, value in iteritems(vlls): + vll = dict() + vll['endpoints'] = self.parse_vll_endpoints(value) + vll['vc-id'] = self.parse_vll_vcid(value) + vll['cos'] = self.parse_vll_cos(value) + facts[key] = vll + return facts + + def parse_vll_vcid(self, data): + match = re.search(r'VC-ID (\d+),', data, re.M) + if match: + return match.group(1) + + def parse_vll_cos(self, data): + match = re.search(r'COS +: +(\d+)', data, re.M) + if match: + return match.group(1) + + def parse_vll_endpoints(self, data): + facts = list() + regex = r'End-point[0-9 ]*: +(?Ptagged|untagged) +(vlan +(?P[0-9]+) +)?(inner- vlan +(?P[0-9]+) +)?(?Pe [0-9/]+|--)' + matches = re.finditer(regex, data, re.IGNORECASE | re.DOTALL) + for n, match in enumerate(matches): + f = match.groupdict() + f['type'] = 'local' + facts.append(f) + + regex = r'Vll-Peer +: +(?P[0-9\.]+).*Tunnel LSP +: +(?P\S+)' + matches = re.finditer(regex, data, re.IGNORECASE | re.DOTALL) + for n, match in enumerate(matches): + f = match.groupdict() + f['type'] = 'remote' + facts.append(f) + + return facts + + def parse_vpls_vcid(self, data): + match = re.search(r'Id (\d+),', data, re.M) + if match: + return match.group(1) + + def parse_vpls_endpoints(self, data): + facts = list() + regex = r'Vlan (?P[0-9]+)\s(?: +(?:L2.*)\s| +Tagged: (?P.+)+\s| +Untagged: (?P.+)\s)*' + matches = re.finditer(regex, data, re.IGNORECASE) + for n, match in enumerate(matches): + f = match.groupdict() + f['type'] = 'local' + facts.append(f) + + regex = r'Peer address: (?P[0-9\.]+)' + matches = re.finditer(regex, data, re.IGNORECASE) + for n, match in enumerate(matches): + f = match.groupdict() + f['type'] = 'remote' + facts.append(f) + + return facts + + def populate_lsps(self, lsps): + facts = dict() + for key, value in iteritems(lsps): + lsp = dict() + lsp['to'] = self.parse_lsp_to(value) + lsp['from'] = self.parse_lsp_from(value) + lsp['adminstatus'] = self.parse_lsp_adminstatus(value) + lsp['operstatus'] = self.parse_lsp_operstatus(value) + lsp['pri_path'] = self.parse_lsp_pripath(value) + lsp['sec_path'] = self.parse_lsp_secpath(value) + lsp['frr'] = self.parse_lsp_frr(value) + + facts[key] = lsp + + return facts + + def parse_lsp_to(self, data): + match = re.search(r'^LSP .* to (\S+)', data, re.M) + if match: + return match.group(1) + + def parse_lsp_from(self, data): + match = re.search(r'From: ([^\s,]+),', data, re.M) + if match: + return match.group(1) + + def parse_lsp_adminstatus(self, data): + match = re.search(r'admin: (\w+),', data, re.M) + if match: + return match.group(1) + + def parse_lsp_operstatus(self, data): + match = re.search(r'From: .* status: (\w+)', data, re.M) + if match: + return match.group(1) + + def parse_lsp_pripath(self, data): + match = re.search(r'Pri\. path: ([^\s,]+), up: (\w+), active: (\w+)', data, re.M) + if match: + path = dict() + path['name'] = match.group(1) if match.group(1) != 'NONE' else None + path['up'] = True if match.group(2) == 'yes' else False + path['active'] = True if match.group(3) == 'yes' else False + return path + + def parse_lsp_secpath(self, data): + match = re.search(r'Sec\. path: ([^\s,]+), active: (\w+).*\n.* status: (\w+)', data, re.M) + if match: + path = dict() + path['name'] = match.group(1) if match.group(1) != 'NONE' else None + path['up'] = True if match.group(3) == 'up' else False + path['active'] = True if match.group(2) == 'yes' else False + return path + + def parse_lsp_frr(self, data): + match = re.search(r'Backup LSP: (\w+)', data, re.M) + if match: + path = dict() + path['up'] = True if match.group(1) == 'UP' else False + path['name'] = None + if path['up']: + match = re.search('bypass_lsp: (\S)', data, re.M) + path['name'] = match.group(1) if match else None + return path + + +class Interfaces(FactsBase): + + COMMANDS = [ + 'show interfaces', + 'show ipv6 interface', + 'show lldp neighbors' + ] + + def populate(self): + super(Interfaces, self).populate() + + self.facts['all_ipv4_addresses'] = list() + self.facts['all_ipv6_addresses'] = list() + + data = self.responses[0] + if data: + interfaces = self.parse_interfaces(data) + self.facts['interfaces'] = self.populate_interfaces(interfaces) + + data = self.responses[1] + if data: + data = self.parse_interfaces(data) + self.populate_ipv6_interfaces(data) + + data = self.responses[2] + if data and 'LLDP is not running' not in data: + self.facts['neighbors'] = self.parse_neighbors(data) + + def populate_interfaces(self, interfaces): + facts = dict() + for key, value in iteritems(interfaces): + intf = dict() + intf['description'] = self.parse_description(value) + intf['macaddress'] = self.parse_macaddress(value) + + ipv4 = self.parse_ipv4(value) + intf['ipv4'] = self.parse_ipv4(value) + if ipv4: + self.add_ip_address(ipv4['address'], 'ipv4') + + intf['mtu'] = self.parse_mtu(value) + intf['bandwidth'] = self.parse_bandwidth(value) + intf['duplex'] = self.parse_duplex(value) + intf['lineprotocol'] = self.parse_lineprotocol(value) + intf['operstatus'] = self.parse_operstatus(value) + intf['type'] = self.parse_type(value) + + facts[key] = intf + return facts + + def populate_ipv6_interfaces(self, data): + for key, value in iteritems(data): + self.facts['interfaces'][key]['ipv6'] = list() + addresses = re.findall(r'\s([0-9a-f]+:+[0-9a-f:]+\/\d+)\s', value, re.M) + for addr in addresses: + address, masklen = addr.split('/') + ipv6 = dict(address=address, masklen=int(masklen)) + self.add_ip_address(ipv6['address'], 'ipv6') + self.facts['interfaces'][key]['ipv6'].append(ipv6) + + def add_ip_address(self, address, family): + if family == 'ipv4': + self.facts['all_ipv4_addresses'].append(address) + else: + self.facts['all_ipv6_addresses'].append(address) + + def parse_neighbors(self, neighbors): + facts = dict() + for line in neighbors.split('\n'): + if line == '': + continue + match = re.search(r'([\d\/]+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)', line, re.M) + if match: + intf = match.group(1) + if intf not in facts: + facts[intf] = list() + fact = dict() + fact['host'] = match.group(5) + fact['port'] = match.group(3) + facts[intf].append(fact) + return facts + + def parse_interfaces(self, data): + parsed = dict() + for line in data.split('\n'): + if not line: + continue + elif line[0] == ' ': + parsed[key] += '\n%s' % line + else: + match = re.match(r'^(\S+Ethernet|eth )(\S+)', line) + if match: + key = match.group(2) + parsed[key] = line + return parsed + + def parse_description(self, data): + match = re.search(r'Port name is (.+)$', data, re.M) + if match: + return match.group(1) + + def parse_macaddress(self, data): + match = re.search(r'address is (\S+)', data) + if match: + return match.group(1) + + def parse_ipv4(self, data): + match = re.search(r'Internet address is ([^\s,]+)', data) + if match: + addr, masklen = match.group(1).split('/') + return dict(address=addr, masklen=int(masklen)) + + def parse_mtu(self, data): + match = re.search(r'MTU (\d+)', data) + if match: + return int(match.group(1)) + + def parse_bandwidth(self, data): + match = re.search(r'BW is (\d+)', data) + if match: + return int(match.group(1)) + + def parse_duplex(self, data): + match = re.search(r'configured duplex \S+ actual (\S+)', data, re.M) + if match: + return match.group(1) + + def parse_mediatype(self, data): + match = re.search(r'Type\s*:\s*(.+)$', data, re.M) + if match: + return match.group(1) + + def parse_type(self, data): + match = re.search(r'Hardware is (.+),', data, re.M) + if match: + return match.group(1) + + def parse_lineprotocol(self, data): + match = re.search(r'line protocol is (\S+)', data, re.M) + if match: + return match.group(1) + + def parse_operstatus(self, data): + match = re.search(r'^(?:.+) is (.+),', data, re.M) + if match: + return match.group(1) + + +FACT_SUBSETS = dict( + default=Default, + hardware=Hardware, + interfaces=Interfaces, + config=Config, + mpls=MPLS, +) + +VALID_SUBSETS = frozenset(FACT_SUBSETS.keys()) + + +def main(): + """main entry point for module execution + """ + argument_spec = dict( + gather_subset=dict(default=["!config", "!mpls"], type='list') + ) + + argument_spec.update(ironware_argument_spec) + + module = AnsibleModule(argument_spec=argument_spec, + supports_check_mode=True) + + gather_subset = module.params['gather_subset'] + + runable_subsets = set() + exclude_subsets = set() + + for subset in gather_subset: + if subset == 'all': + runable_subsets.update(VALID_SUBSETS) + continue + + if subset.startswith('!'): + subset = subset[1:] + if subset == 'all': + exclude_subsets.update(VALID_SUBSETS) + continue + exclude = True + else: + exclude = False + + if subset not in VALID_SUBSETS: + module.fail_json(msg='Bad subset') + + if exclude: + exclude_subsets.add(subset) + else: + runable_subsets.add(subset) + + if not runable_subsets: + runable_subsets.update(VALID_SUBSETS) + + runable_subsets.difference_update(exclude_subsets) + runable_subsets.add('default') + + facts = dict() + facts['gather_subset'] = list(runable_subsets) + + instances = list() + for key in runable_subsets: + instances.append(FACT_SUBSETS[key](module)) + + for inst in instances: + inst.populate() + facts.update(inst.facts) + + ansible_facts = dict() + for key, value in iteritems(facts): + key = 'ansible_net_%s' % key + ansible_facts[key] = value + + check_args(module) + + module.exit_json(ansible_facts=ansible_facts) + + +if __name__ == '__main__': + main() diff --git a/test/units/modules/network/ironware/fixtures/dir b/test/units/modules/network/ironware/fixtures/dir new file mode 100644 index 00000000000..8d328d45cc6 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/dir @@ -0,0 +1 @@ +Directory of /flash/ diff --git a/test/units/modules/network/ironware/fixtures/show_chassis b/test/units/modules/network/ironware/fixtures/show_chassis new file mode 100644 index 00000000000..05ee95111a6 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_chassis @@ -0,0 +1,45 @@ +*** MLXe 4-slot Chassis *** + +---POWERS --- +Power 1: (23-0000129-02 BMG2J50F014 - AC 1800W): Installed (OK) +Power 2: ( 32006000 113186101409 - AC 1200W): Installed (OK) +Power 3: not present +Power 4: not present +Total power budget for chassis = 3000 W +Total power used by system core = 450 W +Total power used by LPs = 406 W +Total power available = 2144 W +Slot Power-On Priority and Power Usage: +Slot1 pri=1 module type=NI-MLX-10Gx8-M 8-port 10GbE (M) Module power usage=246W +Slot2 pri=1 module type=BR-MLX-1GFx24-X 24-port 1GbE SFP Module power usage=160W + +--- FANS --- +Back fan A-1: Status = OK, Speed = LOW (50%) +Back fan A-2: Status = OK, Speed = LOW (50%) +Back fan B-1: Status = OK, Speed = LOW (50%) +Back fan B-2: Status = OK, Speed = LOW (50%) +Back fan C-1: Status = OK, Speed = LOW (50%) +Back fan C-2: Status = OK, Speed = LOW (50%) +Back fan D-1: Status = OK, Speed = LOW (50%) +Back fan D-2: Status = OK, Speed = LOW (50%) + +--- TEMPERATURE READINGS --- +Active Mgmt Module: 33.500C 44.375C +Standby Mgmt Module: 35.500C 47.250C +SFM1: FE1:34.625C +SFM2: FE1:37.0C +SFM3: not present +LP1 Sensor1: 37.500C +LP1 Sensor2: 38.375C +LP1 Sensor3: 34.750C +LP1 Sensor4: 33.0C +LP1 Sensor5: 39.125C +LP1 Sensor6: 39.0C +LP1 Sensor7: 43.0C +LP2 Sensor1: 47.500C +LP2 Sensor2: 43.500C +LP2 Sensor3: 38.625C +Fans are in auto mode (current speed is LOW (50%)). Temperature monitoring poll period is 60 seconds. + +--- MISC INFO --- +Backplane EEPROM MAC Address: 0024.38ae.ff00 diff --git a/test/units/modules/network/ironware/fixtures/show_interfaces b/test/units/modules/network/ironware/fixtures/show_interfaces new file mode 100644 index 00000000000..f54e3a10bcb --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_interfaces @@ -0,0 +1,1053 @@ +10GigabitEthernet1/1 is down, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff00 (bia 0024.38ae.ff00) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 4040 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Member of active trunk ports 1/1, primary port + Member of configured trunk ports 1/1, primary port + No port name + Port is not enabled to receive all vlan packets for pbr + Internet address is 10.69.1.6/30, MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 1 + Cluster L2 protocol forwarding enabled + 30 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 305252868 packets input, 43293167239 bytes, 0 no buffer + Received 75 broadcasts, 23206249 multicasts, 282046544 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 305252868 packets, Sent to TM 305252569 packets + NP Ingress dropped 299 packets + 294473220 packets output, 27084980920 bytes, 0 underruns + Transmitted 93593 broadcasts, 3157540 multicasts, 291222087 unicasts + 0 output errors, 0 collisions + NP transmitted 294473223 packets, Received from TM 294473223 packets +10GigabitEthernet1/2 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff01 (bia 0024.38ae.ff01) + Configured speed 10Gbit, actual 10Gbit, configured duplex fdx, actual fdx + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Forwarding + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + Port name is To ces01.lab e2/1 + Port is not enabled to receive all vlan packets for pbr + Internet address is 10.69.1.77/30, MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 2 + Cluster L2 protocol forwarding enabled + 30 second input rate: 1316 bits/sec, 1 packets/sec, 0.00% utilization + 30 second output rate: 529 bits/sec, 0 packets/sec, 0.00% utilization + 28253040 packets input, 3837442974 bytes, 0 no buffer + Received 36030 broadcasts, 1176576 multicasts, 27040434 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 28253040 packets, Sent to TM 28252946 packets + NP Ingress dropped 94 packets + 38399732 packets output, 4357868636 bytes, 0 underruns + Transmitted 36067 broadcasts, 1676300 multicasts, 36687365 unicasts + 0 output errors, 0 collisions + NP transmitted 38399732 packets, Received from TM 38399732 packets +10GigabitEthernet1/3 is down, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff02 (bia 0024.38ae.ff02) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + Port name is To ces02.lab e2/1 + Port is not enabled to receive all vlan packets for pbr + Internet address is 10.69.1.73/30, MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 3 + Cluster L2 protocol forwarding enabled + 30 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 4586556 packets input, 412859576 bytes, 0 no buffer + Received 10388 broadcasts, 326374 multicasts, 4249794 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 4586556 packets, Sent to TM 4586556 packets + NP Ingress dropped 0 packets + 4913588 packets output, 475340051 bytes, 0 underruns + Transmitted 10390 broadcasts, 326389 multicasts, 4576809 unicasts + 0 output errors, 0 collisions + NP transmitted 4913590 packets, Received from TM 4913590 packets +10GigabitEthernet1/4 is down, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff03 (bia 0024.38ae.ff03) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Enabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 4 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 895100 packets input, 98673879 bytes, 0 no buffer + Received 141 broadcasts, 522145 multicasts, 372814 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 895100 packets, Sent to TM 895074 packets + NP Ingress dropped 26 packets + 279669 packets output, 27849215 bytes, 0 underruns + Transmitted 7104 broadcasts, 17011 multicasts, 255554 unicasts + 0 output errors, 0 collisions + NP transmitted 279669 packets, Received from TM 779636 packets +10GigabitEthernet1/5 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff04 (bia 0024.38ae.ff04) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 5 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +10GigabitEthernet1/6 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff05 (bia 0024.38ae.ff05) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 6 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +10GigabitEthernet1/7 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff06 (bia 0024.38ae.ff06) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 7 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +10GigabitEthernet1/8 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is 10GigabitEthernet, address is 0024.38ae.ff07 (bia 0024.38ae.ff07) + Configured speed 10Gbit, actual unknown, configured duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 10000000 kbps + Openflow: Disabled, Openflow Index 8 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/1 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff30 (bia 0024.38ae.ff30) + Configured fiber speed auto, configured copper speed auto, actual 1Gbit, configured fiber duplex fdx, configured copper duplex fdx, actual fdx + Member of Control VLAN 4095, 5 L2 VLAN(S) (tagged), port is in tagged mode, port state is Forwarding + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor enabled (input and output) + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 49 + Cluster L2 protocol forwarding enabled + 300 second input rate: 195 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 34 bits/sec, 0 packets/sec, 0.00% utilization + 132989 packets input, 46356032 bytes, 0 no buffer + Received 6505 broadcasts, 126484 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 132988 packets, Sent to TM 54470 packets + NP Ingress dropped 78518 packets + 54203 packets output, 7100593 bytes, 0 underruns + Transmitted 0 broadcasts, 54203 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 54203 packets, Received from TM 54203 packets +GigabitEthernet2/2 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff31 (bia 0024.38ae.ff31) + Configured fiber speed auto, configured copper speed auto, actual 1Gbit, configured fiber duplex fdx, configured copper duplex fdx, actual fdx + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Forwarding + STP configured to OFF, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + Port name is To MikroTik-04 - ether1 - 10.69.5.44 + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 50 + Cluster L2 protocol forwarding enabled + 30 second input rate: 65 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 844 bits/sec, 0 packets/sec, 0.00% utilization + 486528 packets input, 60646920 bytes, 0 no buffer + Received 94393 broadcasts, 377560 multicasts, 14575 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 486504 packets, Sent to TM 475558 packets + NP Ingress dropped 10946 packets + 1451686 packets output, 152474031 bytes, 0 underruns + Transmitted 92204 broadcasts, 1344911 multicasts, 14571 unicasts + 0 output errors, 0 collisions + NP transmitted 1451686 packets, Received from TM 1451686 packets +GigabitEthernet2/3 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff32 (bia 0024.38ae.ff32) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to OFF, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 51 + Cluster L2 protocol forwarding enabled + 30 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/4 is down, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff33 (bia 0024.38ae.ff33) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 5 (untagged), 1 L2 VLANS (tagged), + port is in dual mode, port state is Disabled + STP configured to OFF, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + Port name is CANCELLATION TEST + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 52 + Cluster L2 protocol forwarding enabled + 30 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/5 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff34 (bia 0024.38ae.ff34) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, 1 L2 VLAN(S) (tagged), port is in tagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 53 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/6 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff35 (bia 0024.38ae.ff35) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, 1 L2 VLAN(S) (tagged), port is in tagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 54 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/7 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff36 (bia 0024.38ae.ff36) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 6 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 55 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/8 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff37 (bia 0024.38ae.ff37) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 56 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/9 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff38 (bia 0024.38ae.ff38) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, 1 L2 VLAN(S) (tagged), port is in tagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 57 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/10 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff39 (bia 0024.38ae.ff39) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 58 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/11 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3a (bia 0024.38ae.ff3a) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 59 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/12 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3b (bia 0024.38ae.ff3b) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 60 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/13 is down, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3c (bia 0024.38ae.ff3c) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 61 + Cluster L2 protocol forwarding enabled + 30 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 30 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/14 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3d (bia 0024.38ae.ff3d) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 62 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/15 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3e (bia 0024.38ae.ff3e) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 63 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/16 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff3f (bia 0024.38ae.ff3f) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 64 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/17 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff40 (bia 0024.38ae.ff40) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 65 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/18 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff41 (bia 0024.38ae.ff41) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 66 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/19 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff42 (bia 0024.38ae.ff42) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 67 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/20 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff43 (bia 0024.38ae.ff43) + Configured fiber speed auto, configured copper speed auto, actual 1Gbit, configured fiber duplex fdx, configured copper duplex fdx, actual fdx + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Forwarding + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror enabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 68 + Cluster L2 protocol forwarding enabled + 300 second input rate: 35 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 168 bits/sec, 0 packets/sec, 0.00% utilization + 54203 packets input, 7154796 bytes, 0 no buffer + Received 0 broadcasts, 54203 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 54203 packets, Sent to TM 54203 packets + NP Ingress dropped 0 packets + 162876 packets output, 34244811 bytes, 0 underruns + Transmitted 0 broadcasts, 162876 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 162876 packets, Received from TM 162876 packets +GigabitEthernet2/21 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff44 (bia 0024.38ae.ff44) + Configured fiber speed auto, configured copper speed auto, actual 1Gbit, configured fiber duplex fdx, configured copper duplex fdx, actual fdx + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Forwarding + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 69 + Cluster L2 protocol forwarding enabled + 300 second input rate: 168 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 35 bits/sec, 0 packets/sec, 0.00% utilization + 162876 packets input, 34244811 bytes, 0 no buffer + Received 0 broadcasts, 162876 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 162876 packets, Sent to TM 162876 packets + NP Ingress dropped 0 packets + 54203 packets output, 7154796 bytes, 0 underruns + Transmitted 0 broadcasts, 54203 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 54203 packets, Received from TM 54203 packets +GigabitEthernet2/22 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff45 (bia 0024.38ae.ff45) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 70 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/23 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff46 (bia 0024.38ae.ff46) + Configured fiber speed auto, configured copper speed auto, actual unknown, configured fiber duplex fdx, configured copper duplex fdx, actual unknown + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Disabled + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 71 + Cluster L2 protocol forwarding enabled + 300 second input rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 0 packets input, 0 bytes, 0 no buffer + Received 0 broadcasts, 0 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 0 packets, Sent to TM 0 packets + NP Ingress dropped 0 packets + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 0 packets, Received from TM 0 packets +GigabitEthernet2/24 is up, line protocol is up + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is GigabitEthernet, address is 0024.38ae.ff47 (bia 0024.38ae.ff47) + Configured fiber speed auto, configured copper speed auto, actual 1Gbit, configured fiber duplex fdx, configured copper duplex fdx, actual fdx + Member of Control VLAN 4095, VLAN 1 (untagged), port is in untagged mode, port state is Forwarding + STP configured to ON, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + mirror disabled, monitor disabled + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 9216 bytes, encapsulation ethernet + Configured BW is 1000000 kbps + Openflow: Disabled, Openflow Index 72 + Cluster L2 protocol forwarding enabled + 300 second input rate: 194 bits/sec, 0 packets/sec, 0.00% utilization + 300 second output rate: 35 bits/sec, 0 packets/sec, 0.00% utilization + 586851 packets input, 45550574 bytes, 0 no buffer + Received 523921 broadcasts, 62930 multicasts, 0 unicasts + 0 input errors, 0 CRC, 0 frame, 0 ignored + 0 runts, 0 giants + NP received 586839 packets, Sent to TM 586839 packets + NP Ingress dropped 0 packets + 54203 packets output, 7154796 bytes, 0 underruns + Transmitted 0 broadcasts, 54203 multicasts, 0 unicasts + 0 output errors, 0 collisions + NP transmitted 54203 packets, Received from TM 54203 packets +Ethernetmgmt1 is disabled, line protocol is down + Loopback: None + STP Root Guard is disabled, STP BPDU Guard is disabled + Hardware is Ethernet, address is 0024.38ae.ff00 (bia 0024.38ae.ff00) + Configured speed 1Gbit, actual unknown, configured duplex fdx, actual unknown + Member of VLAN 0 (untagged), port is in untagged mode, port state is Disabled + STP configured to OFF, Priority is level0, flow control enabled + Priority force disabled, Drop precedence level 0, Drop precedence force disabled + dhcp-snooping-trust configured to OFF + LACP BPDU Forwarding:Disabled + LLDP BPDU Forwarding:Disabled + Not member of any active trunks + Not member of any configured trunks + No port name + Port is not enabled to receive all vlan packets for pbr + MTU 1548 bytes, encapsulation ethernet + Openflow: Disabled, Openflow Index 1537 + Cluster L2 protocol forwarding disabled + 300 second input rate: 1136 bits/sec, 1 packets/sec, 0.00% utilization + 300 second output rate: 0 bits/sec, 0 packets/sec, 0.00% utilization + 33204752 packets input, 2448695549 bytes, 0 no buffer + Received 1788642 broadcasts, 29469988 multicasts, 1946122 unicasts + 0 packets output, 0 bytes, 0 underruns + Transmitted 0 broadcasts, 0 multicasts, 0 unicasts +Loopback1 is up, line protocol is up + Hardware is Loopback + No port name + Internet address is 10.69.0.6/32, IP MTU 1500 bytes, encapsulation LOOPBACK diff --git a/test/units/modules/network/ironware/fixtures/show_ipv6_interface b/test/units/modules/network/ironware/fixtures/show_ipv6_interface new file mode 100644 index 00000000000..51e293b7552 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_ipv6_interface @@ -0,0 +1,5 @@ +Type Codes - I:ISIS O:OSPF R:RIP +Interface Status/Protocol IGPs IPv6 Address VRF +eth 1/1 up/up fe80::224:38ff:feae:ff00 default-vrf + 2001:db8::1/64 + 2001:db8::/64[Anycast] diff --git a/test/units/modules/network/ironware/fixtures/show_lldp_neighbors b/test/units/modules/network/ironware/fixtures/show_lldp_neighbors new file mode 100644 index 00000000000..3958a555ab0 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_lldp_neighbors @@ -0,0 +1,3 @@ +Total number of LLDP neighbors on all ports: 6 +Lcl Port Chassis ID Port ID Port Description System Name +1/2 748e.f863.3600 748e.f863.3631 10GigabitEthernet2/1 ces01.lab diff --git a/test/units/modules/network/ironware/fixtures/show_memory b/test/units/modules/network/ironware/fixtures/show_memory new file mode 100644 index 00000000000..5a7a84af49d --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_memory @@ -0,0 +1,30 @@ +==================================================================== +NetIron MLX active MP slot 5: +Total SDRAM : 4294967295 bytes +Available Memory : 3806097408 bytes +Available Memory (%): 88 percent +Free Physical Pages : 925008 pages + +Malloc statistics: total 633606628 +OS malloc count: 2437418082 +OS malloc fail: 0 +OS free count: 2437404486 +OS free fail: 0 +diff: 13596 +==================================================================== +NetIron MLX standby MP slot 6: +Total SDRAM : 4294967295 bytes +Available Memory : 3784171520 bytes +Available Memory (%): 88 percent +Free Physical Pages : 917843 pages + +==================================================================== +NetIron MLX LP SL 1: +Total SDRAM : 1073741824 bytes +Available Memory : 485294080 bytes +Available Memory (%): 45 percent +==================================================================== +NetIron MLX LP SL 2: +Total SDRAM : 1073741824 bytes +Available Memory : 561364992 bytes +Available Memory (%): 52 percent diff --git a/test/units/modules/network/ironware/fixtures/show_mpls_lsp_detail b/test/units/modules/network/ironware/fixtures/show_mpls_lsp_detail new file mode 100644 index 00000000000..aea592136b3 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_mpls_lsp_detail @@ -0,0 +1,32 @@ +LSP LSP1, to 1.1.1.1 + From: (n/a), admin: DOWN, status: DOWN + revert timer: 300 seconds + Times primary LSP goes up since enabled: 1 + Metric: 0, Adaptive + Maximum retries: NONE, no. of retries: 0 + Pri. path: NONE, up: no, active: no + Setup priority: 7, hold priority: 0, cos 1 + Max rate: 0 kbps, mean rate: 0 kbps, max burst: 0 bytes + CSPF-computation-mode configured: use te-metric(global) + ReoptimizeTimer configured 1800 + Tie breaking: random, hop limit: 0 + LDP tunneling enabled: yes + Soft preemption enabled: no + Active Path attributes: + Fast Reroute: facility backup desired, node protection desired + Backup LSP: DOWN + Global revertiveness enabled with hold time 5 secs + FRR Forwarding State: Pri(down), Backup(down) +LSP LSP3, to 3.3.3.3 + From: (n/a), admin: DOWN, status: DOWN + Times primary LSP goes up since enabled: 0 + Metric: 0 + Maximum retries: NONE, no. of retries: 0 + Pri. path: NONE, up: no, active: no + Setup priority: 7, hold priority: 0 + Max rate: 0 kbps, mean rate: 0 kbps, max burst: 0 bytes + CSPF-computation-mode configured: use te-metric(global) + Tie breaking: random, hop limit: 0 + LDP tunneling enabled: no + Soft preemption enabled: no + Active Path attributes: diff --git a/test/units/modules/network/ironware/fixtures/show_mpls_vll-local_detail b/test/units/modules/network/ironware/fixtures/show_mpls_vll-local_detail new file mode 100644 index 00000000000..d4a3b918eb8 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_mpls_vll-local_detail @@ -0,0 +1,7 @@ +VLL TEST-LOCAL VLL-ID 1 IFL-ID -- + State: DOWN - endpoint port is down + End-point 1: untagged e 2/8 + COS: -- + End-point 2: tagged vlan 5 e 2/9 + COS: -- + Extended Counters: Enabled diff --git a/test/units/modules/network/ironware/fixtures/show_mpls_vll_detail b/test/units/modules/network/ironware/fixtures/show_mpls_vll_detail new file mode 100644 index 00000000000..0a584cc51c7 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_mpls_vll_detail @@ -0,0 +1,19 @@ +VLL TEST-VLL, VC-ID 111, VLL-INDEX 4 + + End-point : tagged vlan 2005 e 2/1 + End-Point state : Up + MCT state : None + IFL-ID : -- + Local VC type : untag + Local VC MTU : 9190 + COS : 1 + Extended Counters: Enabled + + Vll-Peer : 1.1.1.1 + State : DOWN - PW is Down (Reason:Wait for peer label) + Remote VC type : -- Remote VC MTU : -- + Local label : -- Remote label : -- + Local group-id : 0 Remote group-id: -- + Tunnel LSP : lsp1 (tnl1) + MCT Status TLV : -- + LSPs assigned : No LSPs assigned diff --git a/test/units/modules/network/ironware/fixtures/show_mpls_vpls_detail b/test/units/modules/network/ironware/fixtures/show_mpls_vpls_detail new file mode 100644 index 00000000000..3f99f71a28e --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_mpls_vpls_detail @@ -0,0 +1,21 @@ +VPLS TEST-VPLS, Id 333, Max mac entries: 2048 + Total vlans: 2, Tagged ports: 2 (0 Up), Untagged ports 2 (0 Up) + IFL-ID: n/a + Vlan 5 + L2 Protocol: NONE + Untagged: ethe 2/4 + Vlan 6 + L2 Protocol: NONE + Tagged: ethe 2/5 to 2/6 + Untagged: ethe 2/7 + VC-Mode: Raw + Total VPLS peers: 1 (0 Operational) + Peer address: 3.3.3.3, State: Wait for functional local ports + Tnnl in use: tnl1(3)[RSVP] Peer Index:0 + Local VC lbl: N/A, Remote VC lbl: N/A + Local VC MTU: 9190, Remote VC MTU: 0 + Local VC-Type: Ethernet(0x05), Remote VC-Type: UNKNOWN + CPU-Protection: OFF + Local Switching: Enabled + Extended Counter: ON + Multicast Snooping: Disabled diff --git a/test/units/modules/network/ironware/fixtures/show_running-config b/test/units/modules/network/ironware/fixtures/show_running-config new file mode 100644 index 00000000000..5bfdefb13a2 --- /dev/null +++ b/test/units/modules/network/ironware/fixtures/show_running-config @@ -0,0 +1,291 @@ +!Current configuration: +! +ver V5.8.0fT163 +module 1 ni-mlx-8-port-10g-m +module 2 br-mlx-24-port-1gf-x +! +! +mirror ethernet 2/20 +! +lag "LAG" dynamic id 3 + ports ethernet 1/1 + primary-port 1/1 + lacp-timeout short + deploy +! +! +! + +! +no spanning-tree +! +! +vlan 1 name DEFAULT-VLAN + no untagged ethe 2/1 to 2/2 ethe 2/4 to 2/9 +! +vlan 150 +! +vlan 666 name LACP_ISOLATION_CUSTOMER +! +vlan 1000 +! +vlan 2007 + tagged ethe 2/1 +! +vlan 4040 + untagged ethe 1/1 +! + +! +! +qos-mapping +! +default-max-frame-size 9216 +cpu-usage on +aaa authentication login default tacacs+ local enable +tacacs-server host 5.5.5.5 +tacacs-server key 2 $X3FSZjgzKGzPIXVd +! +! +enable password-display +enable super-user-password 8 $1$WV1..Pi2$B6acbjDxeHsof2BKrpyqQ0 +enable aaa console +logging host 5.5.5.5 +logging facility local7 +logging buffered 5000 +logging console +username admin password 8 $1$MF/..XD4$MYUy7kcm/1eAuqXnVyvVO1 +username admin history $1$MF/..XD4$MYUy7kcm/1eAuqXnVyvVO1 $1$KE/..Cs2$WlfErdta9.sG9v5QmbaTd/ +! +tag-type 9100 ethe 1/4 +tag-type 9100 ethe 2/2 +tag-type 9100 ethe 2/24 +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +! +snmp-server +snmp-server community 2 $YkAtaSs/fFE6Sz97 ro +snmp-server max-ifindex-per-module 64 +snmp-server cache size 128 +hostname mlx01.lab +no transceiver-type-check +! +netconf server +! +router isis + net 49.0001.0100.6900.0006.00 + fast-flood 4 + no hello padding + is-type level-2 + log adjacency + address-family ipv4 unicast + metric-style wide + redistribute connected + exit-address-family + + address-family ipv6 unicast + no adjacency-check + exit-address-family + +! +! +! +! +! +qos-policy +! +policy-map CUST-100Mb + cir 99992032 cbs 3125000 +! +policy-map core-to-core-interface +! +! +hqos scheduler-policy core-to-core-interface-4.2G level level-0 + shaper-rate 4193280 + shaper-burst-size 256 + scheduler-type strict +! +! +! +hqos scheduler-policy P5 level level-1 + shaper-rate 10000000 + shaper-burst-size 10 + scheduler-type strict +! +! +! +! +interface loopback 1 + ip address 10.69.0.6/32 + no ip redirect +! +! +interface ethernet 1/1 + enable + load-interval 30 + bfd interval 100 min-rx 100 multiplier 5 + ip router isis + ip address 10.69.1.6/30 + ip mtu 9198 + ipv6 address 2001:db8::1/64 + isis bfd + isis circuit-type level-2 + isis metric 500 + isis point-to-point +! +interface ethernet 1/2 + port-name foo + enable + load-interval 30 + bfd interval 100 min-rx 100 multiplier 5 + ip router isis + ip address 10.69.1.77/30 + ip mtu 9198 + isis circuit-type level-2 + isis ipv6 metric 250 + isis point-to-point +! +interface ethernet 1/3 +enable +forward-lacp +! +interface ethernet 1/4 + enable + forward-lacp +! +interface ethernet 2/1 + enable + mon ethernet 2/20 both +! +interface ethernet 2/2 + enable + load-interval 30 + rate-limit input broadcast unknown-unicast multicast 521216 64000 + no spanning-tree +! +interface ethernet 2/3 + load-interval 30 + rate-limit input broadcast unknown-unicast multicast 521216 64000 + no fdp enable + no cdp enable + no spanning-tree +! +interface ethernet 2/4 + enable + load-interval 30 + rate-limit input broadcast unknown-unicast multicast 521216 64000 + no fdp enable + no cdp enable + no spanning-tree +! +interface ethernet 2/13 + enable + load-interval 30 +! +interface ethernet 2/20 + enable +! +interface ethernet 2/21 + enable +! +interface ethernet 2/24 + enable +! +ip tacacs source-interface loopback 1 +! +! +router mpls + bfd + + dynamic-bypass + enable + reoptimize-timer 1800 + + + policy + traffic-eng isis level-2 + handle-isis-neighbor-down + cspf-computation-mode use-te-metric + + rsvp + rsvp-reliable-messaging + + ldp + tunnel-metric 10 + + mpls-interface e1/1 + rsvp-reliable-messaging + dynamic-bypass + enable + name-prefix dyn + adaptive + cos 1 + + mpls-interface e1/2 + rsvp-reliable-messaging + dynamic-bypass + enable + name-prefix dyn + adaptive + cos 1 + + lsp LSP1 + to 1.1.1.1 + no cspf + adaptive + enable + + lsp LSP3 + to 3.3.3.3 + shortcuts isis level2 + adaptive + reoptimize-timer 1800 + frr + facility-backup + revert-timer 300 + enable + + vll TEST-VLL 111 raw-mode cos 1 + vll-peer 1.1.1.1 + vlan 2005 + tagged e 2/1 + + vll-local TEST-LOCAL + extended-counters on + untag e 2/8 + vlan 5 + tag e 2/9 + + vpls TEST-VPLS 333 + vpls-peer 3.3.3.3 + vlan 5 + untagged ethe 2/4 + vlan 6 + tagged ethe 2/5 to 2/6 + untagged ethe 2/7 + +! +! +! +lldp enable ports ethe 1/1 to 1/8 ethe 2/1 to 2/24 +lldp run +! +! +! +! +! +end diff --git a/test/units/modules/network/ironware/fixtures/show_version b/test/units/modules/network/ironware/fixtures/show_version index 18c8732676b..2b578a8b881 100644 --- a/test/units/modules/network/ironware/fixtures/show_version +++ b/test/units/modules/network/ironware/fixtures/show_version @@ -1,27 +1,13 @@ System Mode: MLX -Chassis: NetIron 16-slot (Serial #: H70529F00X, Part #: 35568-001) -NI-X-HSF Switch Fabric Module 1 (Serial #: BEU3243L04H, Part #: 60-1003266-01) +Chassis: MLXe 4-slot (Serial #: BGD2503J01F, Part #: 40-1000363-04) +NI-X-HSF Switch Fabric Module 1 (Serial #: BEW0444H01V, Part #: 60-1001512-10) FE 1: Type fe600, Version 1 -FE 2: Type fe600, Version 1 -FE 3: Type fe600, Version 1 -Switch Fabric Module 1 Up Time is 154 days 15 hours 27 minutes 52 seconds -NI-X-HSF Switch Fabric Module 2 (Serial #: BEU3243L03N, Part #: 60-1003266-01) +Switch Fabric Module 1 Up Time is 203 days 4 hours 44 minutes 54 seconds +NI-X-HSF Switch Fabric Module 2 (Serial #: BEW0432H06S, Part #: 60-1001512-10) FE 1: Type fe600, Version 1 -FE 2: Type fe600, Version 1 -FE 3: Type fe600, Version 1 -Switch Fabric Module 2 Up Time is 154 days 15 hours 27 minutes 52 seconds -NI-X-HSF Switch Fabric Module 3 (Serial #: BEU3243L03X, Part #: 60-1003266-01) -FE 1: Type fe600, Version 1 -FE 2: Type fe600, Version 1 -FE 3: Type fe600, Version 1 -Switch Fabric Module 3 Up Time is 154 days 15 hours 27 minutes 52 seconds -NI-X-HSF Switch Fabric Module 4 (Serial #: BEU3243L041, Part #: 60-1003266-01) -FE 1: Type fe600, Version 1 -FE 2: Type fe600, Version 1 -FE 3: Type fe600, Version 1 -Switch Fabric Module 4 Up Time is 154 days 15 hours 27 minutes 52 seconds +Switch Fabric Module 2 Up Time is 203 days 4 hours 44 minutes 54 seconds ========================================================================== -SL M1: BR-MLX-MR2-M Management Module Active (Serial #: BVP3248L00T, Part #: 60-1003268-01): +SL M1: BR-MLX-MR2-M Management Module Active (Serial #: BVP0425L02W, Part #: 60-1002374-07): Boot : Version 5.8.0T165 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on May 18 2015 at 13:02:10 labeled as xmprm05800 (521590 bytes) from boot flash @@ -35,16 +21,16 @@ Board ID : 00 MBRIDGE Revision : 37 1666 MHz Power PC processor 7448 (version 8004/0202) 166 MHz bus 512 KB Boot Flash (MX29LV040C), 128 MB Code Flash (MT28F256J3) 4096 MB DRAM INSTALLED -4096 MB DRAM ADDRESSABLE -Active Management uptime is 154 days 15 hours 27 minutes 52 seconds +4096 MB DRAM ADDRESSABLE +Active Management uptime is 203 days 4 hours 44 minutes 54 seconds ========================================================================== -SL M2: BR-MLX-MR2-M Management Module Standby (Serial #: BVP3248L00N, Part #: 60-1003268-01): +SL M2: BR-MLX-MR2-M Management Module Standby (Serial #: BVP0407L00D, Part #: 60-1002374-07): Boot : Version 5.8.0T165 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on May 18 2015 at 13:02:10 labeled as xmprm05800 (521590 bytes) from boot flash Monitor : Version 5.8.0T165 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on May 18 2015 at 13:01:40 labeled as xmb05800 - (539721 bytes) from code flash + (539721 bytes) from code flash IronWare : Version 5.8.0fT163 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on Feb 24 2017 at 02:54:38 labeled as xmr05800fb (9983317 bytes) from Primary @@ -53,137 +39,12 @@ Board ID : 00 MBRIDGE Revision : 37 512 KB Boot Flash (MX29LV040C), 128 MB Code Flash (MT28F256J3) 4096 MB DRAM INSTALLED 4096 MB DRAM ADDRESSABLE -Standby Management uptime is 154 days 15 hours 26 minutes 13 seconds -========================================================================== -SL 1: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0401H034, Part #: 60-1001892-10) -License: (LID: dpfFJFGjFIJ) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 1 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 2: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0401H030, Part #: 60-1001892-10) -License: (LID: dpfFJFGjFIF) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 2 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 3: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0415H00E, Part #: 60-1001892-11) -License: (LID: dpfFJGKjFFg) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 3 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 4: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0415H02C, Part #: 60-1001892-11) -License: (LID: dpfFJGKjFHe) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 4 uptime is 154 days 15 hours 26 minutes 17 seconds +Standby Management uptime is 203 days 4 hours 44 minutes 15 seconds ========================================================================== -SL 5: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0422H01T, Part #: 60-1001892-11) -License: (LID: dpfFJHHjFGv) +SL 1: NI-MLX-10Gx8-M 8-port 10GbE (M) Module (Serial #: BEQ0403G05E, Part #: 60-1001587-13) +(LID: dgsFJFIiFKg) Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 5 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 6: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0430H01S, Part #: 60-1001892-11) -License: (LID: dpfFJIFjFGu) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 +Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 (449481 bytes) from boot flash Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 @@ -192,123 +53,21 @@ IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Sys Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb (9304807 bytes) from Primary FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 6 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 7: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0428H024, Part #: 60-1001892-11) -License: MLX-1Gx24-X-Upgrade (LID: dpfFJHNjFHJ) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 7 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 8: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0427H00A, Part #: 60-1001892-11) -License: MLX-1Gx24-X-Upgrade (LID: dpfFJHMjFFc) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 8 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 9: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0428J029, Part #: 60-1001892-12) -License: MLX-1Gx24-X-Upgrade (LID: dpfFJHNlFHO) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 9 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 10: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0418J00E, Part #: 60-1001892-12) -License: (LID: dpfFJGNlFFg) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 +Valid PBIF Version = 2.24, Build Time = 4/7/2016 14:16:00 -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 +Valid XPP Version = 0.08, Build Time = 6/27/2016 10:36:00 -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) +MACXPP40G 0 +MACXPP40G 1 +1333 MHz MPC MPC8548 (version 8021/0022) 533 MHz bus +512 KB Boot Flash (MX29LV040C), 64 MB Code Flash (MT28F256J3) 1024 MB DRAM, 8 KB SRAM -LP Slot 10 uptime is 154 days 15 hours 26 minutes 17 seconds +LP Slot 1 uptime is 203 days 4 hours 44 minutes 12 seconds ========================================================================== -SL 11: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0437J012, Part #: 60-1001892-12) -License: MLX-1Gx24-X-Upgrade (LID: dpfFJIMlFGH) +SL 2: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0415H003, Part #: 60-1001892-11) +License: (LID: dpfFJGKjFFI) Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 +Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 (449481 bytes) from boot flash Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 @@ -319,31 +78,6 @@ Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb FPGA versions: Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 -Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 - -Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 - -BCM56512GMAC 0 -BCM56512GMAC 1 -666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus -512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 11 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 12: BR-MLX-1GFx24-X 24-port 1GbE SFP Module (Serial #: BND0401H05A, Part #: 60-1001892-10) -License: (LID: dpfFJFGjFKc) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 4.04, Build Time = 11/10/2014 22:10:00 - Valid XPP Version = 1.03, Build Time = 6/30/2016 10:37:00 Valid STATS Version = 0.09, Build Time = 11/21/2010 14:52:00 @@ -353,98 +87,6 @@ BCM56512GMAC 1 666 MHz MPC MPC8541E (version 8020/0020) 333 MHz bus 512 KB Boot Flash (MX29LV040C), 16 MB Code Flash (MT28F128J3) 1024 MB DRAM, 8 KB SRAM -LP Slot 12 uptime is 154 days 15 hours 26 minutes 17 seconds -========================================================================== -SL 13: NI-MLX-10Gx8-M 8-port 10GbE (M) Module (Serial #: BEQ3219M01V, Part #: 60-1003263-01) -(LID: dgsIHGOoFGx) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 2.24, Build Time = 4/7/2016 14:16:00 - -Valid XPP Version = 0.08, Build Time = 6/27/2016 10:36:00 - -MACXPP40G 0 -MACXPP40G 1 -1333 MHz MPC MPC8548 (version 8021/0022) 533 MHz bus -512 KB Boot Flash (MX29LV040C), 64 MB Code Flash (MT28F256J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 13 uptime is 154 days 15 hours 26 minutes 20 seconds -========================================================================== -SL 14: NI-MLX-10Gx8-M 8-port 10GbE (M) Module (Serial #: BEQ3219M01Z, Part #: 60-1003263-01) -(LID: dgsIHGOoFGb) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 2.24, Build Time = 4/7/2016 14:16:00 - -Valid XPP Version = 0.08, Build Time = 6/27/2016 10:36:00 - -MACXPP40G 0 -MACXPP40G 1 -1333 MHz MPC MPC8548 (version 8021/0022) 533 MHz bus -512 KB Boot Flash (MX29LV040C), 64 MB Code Flash (MT28F256J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 14 uptime is 154 days 15 hours 26 minutes 21 seconds -========================================================================== -SL 15: NI-MLX-10Gx8-M 8-port 10GbE (M) Module (Serial #: BEQ0428J001, Part #: 60-1001587-16) -(LID: dgsFJHNlFFG) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 2.24, Build Time = 4/7/2016 14:16:00 - -Valid XPP Version = 0.08, Build Time = 6/27/2016 10:36:00 - -MACXPP40G 0 -MACXPP40G 1 -1333 MHz MPC MPC8548 (version 8021/0022) 533 MHz bus -512 KB Boot Flash (MX29LV040C), 64 MB Code Flash (MT28F256J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 15 uptime is 154 days 15 hours 26 minutes 21 seconds -========================================================================== -SL 16: NI-MLX-10Gx8-M 8-port 10GbE (M) Module (Serial #: BEQ0443G098, Part #: 60-1001587-14) -(LID: dgsFJJIiFON) -Boot : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:24 labeled as xmlprm05800 - (449481 bytes) from boot flash -Monitor : Version 5.8.0T175 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on May 18 2015 at 13:02:40 labeled as xmlb05800 - (568745 bytes) from code flash -IronWare : Version 5.8.0fT177 Copyright (c) 1996-2014 Brocade Communications Systems, Inc. -Compiled on Feb 24 2017 at 03:02:10 labeled as xmlp05800fb - (9304807 bytes) from Primary -FPGA versions: -Valid PBIF Version = 2.24, Build Time = 4/7/2016 14:16:00 - -Valid XPP Version = 0.08, Build Time = 6/27/2016 10:36:00 - -MACXPP40G 0 -MACXPP40G 1 -1333 MHz MPC MPC8548 (version 8021/0022) 533 MHz bus -512 KB Boot Flash (MX29LV040C), 64 MB Code Flash (MT28F256J3) -1024 MB DRAM, 8 KB SRAM -LP Slot 16 uptime is 154 days 15 hours 26 minutes 20 seconds +LP Slot 2 uptime is 21 days 20 hours 23 minutes 19 seconds ========================================================================== All show version done diff --git a/test/units/modules/network/ironware/test_ironware_facts.py b/test/units/modules/network/ironware/test_ironware_facts.py new file mode 100644 index 00000000000..f1e66f7bec8 --- /dev/null +++ b/test/units/modules/network/ironware/test_ironware_facts.py @@ -0,0 +1,99 @@ +# (c) 2016 Red Hat Inc. +# +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see . + +# Make coding more python3-ish +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +import json + +from ansible.compat.tests.mock import patch +from .ironware_module import TestIronwareModule, load_fixture, set_module_args +from ansible.modules.network.ironware import ironware_facts + + +class TestIronwareFacts(TestIronwareModule): + + module = ironware_facts + + def setUp(self): + self.mock_run_commands = patch( + 'ansible.modules.network.ironware.ironware_facts.run_commands') + self.run_commands = self.mock_run_commands.start() + + def tearDown(self): + self.mock_run_commands.stop() + + def load_fixtures(self, commands=None): + + def load_from_file(*args, **kwargs): + module, commands = args + output = list() + + for item in commands: + try: + obj = json.loads(item) + command = obj['command'] + except ValueError: + command = item + filename = str(command).split(' | ')[0].replace(' ', '_').replace('/', '7') + output.append(load_fixture(filename)) + return output + + self.run_commands.side_effect = load_from_file + + def test_ironware_facts_gather_subset_default(self): + set_module_args(dict()) + result = self.execute_module() + ansible_facts = result['ansible_facts'] + self.assertIn('hardware', ansible_facts['ansible_net_gather_subset']) + self.assertIn('default', ansible_facts['ansible_net_gather_subset']) + self.assertIn('interfaces', ansible_facts['ansible_net_gather_subset']) + self.assertEquals(['/flash/'], ansible_facts['ansible_net_filesystems']) + self.assertIn('1/1', ansible_facts['ansible_net_interfaces'].keys()) + self.assertIn('10.69.1.6', ansible_facts['ansible_net_all_ipv4_addresses']) + self.assertIn('2001:db8::1', ansible_facts['ansible_net_all_ipv6_addresses']) + self.assertIn('ansible_net_neighbors', ansible_facts) + self.assertIn('1/2', ansible_facts['ansible_net_neighbors'].keys()) + self.assertEquals(4096, ansible_facts['ansible_net_memtotal_mb']) + self.assertEquals(3630, ansible_facts['ansible_net_memfree_mb']) + self.assertEquals('5.8.0fT163', ansible_facts['ansible_net_version']) + self.assertEquals('MLXe 4-slot Chassis', ansible_facts['ansible_net_model']) + self.assertEquals('BGD2503J01F', ansible_facts['ansible_net_serialnum']) + + def test_ironware_facts_gather_subset_config(self): + set_module_args({'gather_subset': 'config'}) + result = self.execute_module() + ansible_facts = result['ansible_facts'] + self.assertIn('default', ansible_facts['ansible_net_gather_subset']) + self.assertIn('config', ansible_facts['ansible_net_gather_subset']) + self.assertIn('ansible_net_config', ansible_facts) + + def test_ironware_facts_gather_subset_mpls(self): + set_module_args({'gather_subset': 'mpls'}) + result = self.execute_module() + ansible_facts = result['ansible_facts'] + self.assertIn('default', ansible_facts['ansible_net_gather_subset']) + self.assertIn('mpls', ansible_facts['ansible_net_gather_subset']) + self.assertIn('ansible_net_mpls_lsps', ansible_facts) + self.assertIn('ansible_net_mpls_vll', ansible_facts) + self.assertIn('ansible_net_mpls_vll_local', ansible_facts) + self.assertIn('ansible_net_mpls_vpls', ansible_facts) + self.assertIn('LSP1', ansible_facts['ansible_net_mpls_lsps'].keys()) + self.assertIn('TEST-VLL', ansible_facts['ansible_net_mpls_vll'].keys()) + self.assertIn('TEST-LOCAL', ansible_facts['ansible_net_mpls_vll_local'].keys()) + self.assertIn('TEST-VPLS', ansible_facts['ansible_net_mpls_vpls'].keys())