From 7542a2d8864dd2d0dcf3fc1580f842b2649f723f Mon Sep 17 00:00:00 2001 From: jlmcgraw Date: Thu, 6 Nov 2025 13:11:40 -0500 Subject: [PATCH] Fixes related to learn("isis") - Adjust area address regex to account for addresses that are hex or None - Adjust schemas to account for valid VRF configurations that do not have all information --- .../changelog_show_isis_202511061306.rst | 7 + src/genie/libs/parser/nxos/show_isis.py | 15 +- .../cli/equal/golden_output_1_expected.py | 278 +++++ .../cli/equal/golden_output_1_output.txt | 617 ++++++++++ .../cli/equal/golden_output_3_expected.py | 192 +++ .../cli/equal/golden_output_3_output.txt | 78 ++ .../cli/empty/empty_golden_output.txt | 0 .../cli/empty/empty_output_output.txt | 0 .../cli/equal/golden_output_1_expected.py | 209 ++++ .../cli/equal/golden_output_1_output.txt | 112 ++ .../cli/empty/empty_golden_output.txt | 0 .../cli/empty/empty_output_output.txt | 0 .../cli/equal/golden_output_1_expected.py | 128 ++ .../cli/equal/golden_output_1_output.txt | 103 ++ .../cli/equal/golden_output_4_expected.py | 1039 +++++++++++++++++ .../cli/equal/golden_output_4_output.txt | 1010 ++++++++++++++++ 16 files changed, 3781 insertions(+), 7 deletions(-) create mode 100644 changelog/undistributed/changelog_show_isis_202511061306.rst create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_expected.py create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_expected.py create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_golden_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_output_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_expected.py create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_golden_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_output_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_expected.py create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_output.txt create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_expected.py create mode 100644 src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_output.txt diff --git a/changelog/undistributed/changelog_show_isis_202511061306.rst b/changelog/undistributed/changelog_show_isis_202511061306.rst new file mode 100644 index 0000000000..6014b1abbd --- /dev/null +++ b/changelog/undistributed/changelog_show_isis_202511061306.rst @@ -0,0 +1,7 @@ +---------------------- + Fix +---------------------- +* nxos + * Modified ShowIsis, ShowIsisAdjacency, ShowIsisHostname, ShowIsisHostnameDetail, ShowIsisInterface + * Adjust area address regex to account for addresses that are hex or None + * Adjust schemas to account for valid VRF configurations that do not have all information diff --git a/src/genie/libs/parser/nxos/show_isis.py b/src/genie/libs/parser/nxos/show_isis.py index 8f81138db9..0713b6c195 100644 --- a/src/genie/libs/parser/nxos/show_isis.py +++ b/src/genie/libs/parser/nxos/show_isis.py @@ -65,7 +65,7 @@ class ShowIsisSchema(MetaParser): 'resolution_of_l3_to_l2': str, 'sr_ipv4': str, 'sr_ipv6': str, - 'supported_interfaces': list, + Optional('supported_interfaces'): list, 'topology': { Any(): { 'address_family': { @@ -169,7 +169,8 @@ def cli(self, vrf='', output=None): # Area address(es) : # 49.0001 - p17 = re.compile(r'^(?P[\d\.]+)$') + # 49.fe51 + p17 = re.compile(r'^\s*(?P([a-fA-F0-9.]+\.[a-fA-F0-9.]+)|None)$') # Process is up and running p18 = re.compile(r'^Process +is +(?P[\S\s]+)$') @@ -520,7 +521,7 @@ class ShowIsisInterfaceSchema(MetaParser): Any(): { # process_id 'vrf': { Any(): { - 'interfaces': { + Optional('interfaces'): { Any(): { 'name': str, 'status': str, @@ -549,7 +550,7 @@ class ShowIsisInterfaceSchema(MetaParser): Optional('passive'): str, Optional('mtu'): int, Optional('lsp_interval_ms'): int, - 'levels': { + Optional('levels'): { Any(): { # 1, 2 Optional('metric'): str, Optional('designated_is'): str, @@ -1060,7 +1061,7 @@ class ShowIsisAdjacencySchema(MetaParser): Any(): { 'vrf': { Any(): { - 'interfaces': { + Optional('interfaces'): { Any(): { 'adjacencies': { Any(): { @@ -1163,7 +1164,7 @@ class ShowIsisHostnameSchema(MetaParser): Any(): { 'vrf': { Any(): { - 'hostname_db': { + Optional('hostname_db'): { 'hostname': { Any(): { 'hostname': str, @@ -1257,7 +1258,7 @@ class ShowIsisHostnameDetailSchema(MetaParser): Any(): { 'vrf': { Any(): { - 'hostname_db': { + Optional('hostname_db'): { 'hostname': { Any(): { 'hostname': str, diff --git a/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_expected.py b/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_expected.py new file mode 100644 index 0000000000..8d63ad22a4 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_expected.py @@ -0,0 +1,278 @@ +expected_output = {'instance': { + '65100': {'isis_process': '65100', 'instance_number': 1, 'uuid': '1090519320', + 'process_id': 10492, 'vrf': { + 'osatm': {'vrf': 'osatm', 'system_id': '0101.0006.8054', 'is_type': 'L1-L2', + 'sap': 412, 'queue_handle': 12, 'maximum_lsp_mtu': 1492, + 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe51'], 'process': 'up and running', + 'vrf_id': 3, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback105', 'Port-channel1.105', + 'Ethernet1/2.105', 'Ethernet2/2.105'], + 'topology': {0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, + 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'odeprod': {'vrf': 'odeprod', 'system_id': '0101.0006.8044', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe50'], 'process': 'up and running', + 'vrf_id': 4, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback104', 'Port-channel1.104', + 'Ethernet1/2.104', 'Ethernet2/2.104'], + 'topology': {0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, + 'distance': 115}}}, 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'excontrol': {'vrf': 'excontrol', 'system_id': '0101.0006.8024', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe4e'], 'process': 'up and running', + 'vrf_id': 5, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback102', 'Port-channel1.102', + 'Ethernet1/2.102', + 'Ethernet2/2.102'], 'topology': { + 0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'default': {'vrf': 'default', 'system_id': 'None', 'is_type': 'L1-L2', + 'sap': 412, 'queue_handle': 12, 'maximum_lsp_mtu': 1492, + 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally disabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['None'], 'process': 'disabled because :', + 'vrf_id': 1, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', 'topology': {0: { + 'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, 'distance': 115}}}, + 2: { + 'address_family': { + 'ipv4_unicast': { + 'number_of_interface': 0, + 'distance': 115}, + 'ipv6_unicast': { + 'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'oos-be': {'vrf': 'oos-be', 'system_id': '0101.0006.8084', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe54'], 'process': 'up and running', + 'vrf_id': 6, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback108', 'Port-channel1.108', + 'Ethernet1/2.108', 'Ethernet2/2.108'], + 'topology': {0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, + 'distance': 115}}}, 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'oon-hybrid': {'vrf': 'oon-hybrid', 'system_id': '0101.0006.8064', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe52'], 'process': 'up and running', + 'vrf_id': 7, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback106', 'Port-channel1.106', + 'Ethernet1/2.106', + 'Ethernet2/2.106'], 'topology': { + 0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'exnotprod': {'vrf': 'exnotprod', 'system_id': '0101.0006.8034', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe4f'], 'process': 'up and running', + 'vrf_id': 8, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback103', 'Port-channel1.103', + 'Ethernet1/2.103', 'Ethernet2/2.103'], + 'topology': {0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, + 'distance': 115}}}, 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'exrestrict': {'vrf': 'exrestrict', 'system_id': '0101.0006.8004', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe4c'], 'process': 'up and running', + 'vrf_id': 9, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback100', 'Port-channel1.100', + 'Ethernet1/2.100', + 'Ethernet2/2.100'], 'topology': { + 0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'exwan-netconf': {'vrf': 'exwan-netconf', 'system_id': '0101.0006.8074', + 'is_type': 'L1-L2', 'sap': 412, 'queue_handle': 12, + 'maximum_lsp_mtu': 1492, 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe53'], 'process': 'up and running', + 'vrf_id': 10, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback107', + 'Port-channel1.107', + 'Ethernet1/2.107', + 'Ethernet2/2.107'], 'topology': { + 0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}, + 'exuuser': {'vrf': 'exuuser', 'system_id': '0101.0006.8014', 'is_type': 'L1-L2', + 'sap': 412, 'queue_handle': 12, 'maximum_lsp_mtu': 1492, + 'stateful_ha': 'enabled', + 'graceful_restart': {'enable': True, 'state': 'Inactive', + 'last_gr_status': 'none'}, + 'start_mode': 'Complete', 'bfd_ipv4': 'globally enabled', + 'bfd_ipv6': 'globally disabled', 'topology_mode': 'base', + 'metric_type': {'advertise': ['wide'], + 'accept': ['narrow', 'wide']}, + 'area_address': ['49.fe4d'], 'process': 'up and running', + 'vrf_id': 11, + 'during_non_graceful_controlled_restart': 'Stale routes', + 'resolution_of_l3_to_l2': 'Enable', + 'sr_ipv4': 'not configured and disabled', + 'sr_ipv6': 'not configured and disabled', + 'supported_interfaces': ['Loopback101', 'Port-channel1.101', + 'Ethernet1/2.101', 'Ethernet2/2.101'], + 'topology': {0: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 4, 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 4, 'distance': 115}}}, + 2: {'address_family': { + 'ipv4_unicast': {'number_of_interface': 0, + 'distance': 115}, + 'ipv6_unicast': {'number_of_interface': 0, + 'distance': 115}}}}, + 'authentication': {'level_1': {'auth_check': 'set'}, + 'level_2': {'auth_check': 'set'}}, + 'l1_next_spf': 'Inactive', 'l2_next_spf': 'Inactive'}}}}} diff --git a/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_output.txt new file mode 100644 index 0000000000..a59a6f0ceb --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsis/cli/equal/golden_output_1_output.txt @@ -0,0 +1,617 @@ +show isis vrf all + + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: osatm + System ID : 0101.0006.8054 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe51 + Process is up and running + VRF ID: 3 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback105 + port-channel1.105 + Ethernet1/2.105 + Ethernet2/2.105 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: odeprod + System ID : 0101.0006.8044 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe50 + Process is up and running + VRF ID: 4 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback104 + port-channel1.104 + Ethernet1/2.104 + Ethernet2/2.104 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: excontrol + System ID : 0101.0006.8024 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe4e + Process is up and running + VRF ID: 5 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback102 + port-channel1.102 + Ethernet1/2.102 + Ethernet2/2.102 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: default + System ID : None IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally disabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + None + Process is disabled because : + NET is not specified + VRF ID: 1 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + Topology : 0 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: oos-be + System ID : 0101.0006.8084 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe54 + Process is up and running + VRF ID: 6 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback108 + port-channel1.108 + Ethernet1/2.108 + Ethernet2/2.108 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: oon-hybrid + System ID : 0101.0006.8064 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe52 + Process is up and running + VRF ID: 7 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback106 + port-channel1.106 + Ethernet1/2.106 + Ethernet2/2.106 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: exnotprod + System ID : 0101.0006.8034 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe4f + Process is up and running + VRF ID: 8 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback103 + port-channel1.103 + Ethernet1/2.103 + Ethernet2/2.103 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: exrestrict + System ID : 0101.0006.8004 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe4c + Process is up and running + VRF ID: 9 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback100 + port-channel1.100 + Ethernet1/2.100 + Ethernet2/2.100 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: exwan-netconf + System ID : 0101.0006.8074 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe53 + Process is up and running + VRF ID: 10 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback107 + port-channel1.107 + Ethernet1/2.107 + Ethernet2/2.107 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + +ISIS process : 65100 + Instance number : 1 + UUID: 1090519320 + Process ID 10492 +VRF: exuuser + System ID : 0101.0006.8014 IS-Type : L1-L2 + SAP : 412 Queue Handle : 12 + Maximum LSP MTU: 1492 + Stateful HA enabled + Graceful Restart enabled. State: Inactive + Last graceful restart status : none + Start-Mode Complete + BFD IPv4 is globally enabled for ISIS process: 65100 + BFD IPv6 is globally disabled for ISIS process: 65100 + Topology-mode is base + Metric-style : advertise(wide), accept(narrow, wide) + Area address(es) : + 49.fe4d + Process is up and running + VRF ID: 11 + Stale routes during non-graceful controlled restart + Enable resolution of L3->L2 address for ISIS adjacency + SR IPv4 is not configured and disabled for ISIS process: 65100 + SR IPv6 is not configured and disabled for ISIS process: 65100 +SRv6 feature not present + Interfaces supported by IS-IS : + loopback101 + port-channel1.101 + Ethernet1/2.101 + Ethernet2/2.101 + Topology : 0 + Address family IPv4 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 4 + Adjacency check disabled + Distance : 115 + Default-information not originated + Topology : 2 + Address family IPv4 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Address family IPv6 unicast : + Number of interface : 0 + Distance : 115 + Default-information not originated + Level1 + No auth type and keychain + Auth check set + Level2 + No auth type and keychain + Auth check set + L1 Next SPF: Inactive + L2 Next SPF: Inactive + Attached bits + MT-0 L-1: Att 0 Spf-att 0 Cfg 1 Adv-att 0 + MT-0 L-2: Att 0 Spf-att 0 Cfg 1 Adv-att 0 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_expected.py b/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_expected.py new file mode 100644 index 0000000000..1a9db3f288 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_expected.py @@ -0,0 +1,192 @@ +expected_output = {'instance': {'65100': {'vrf': {'osatm': {'interfaces': { + 'Port-channel1.105': {'adjacencies': {'sebxdb002-xdb': {'neighbor_snpa': { + 'N/A': {'level': {'2': {'hold_time': '00:00:31', 'state': 'UP'}}}}}}}, + 'Ethernet1/2.105': {'adjacencies': {'sojxdb001-xdb': {'neighbor_snpa': { + 'N/A': {'level': {'2': {'hold_time': '00:00:22', 'state': 'UP'}}}}}}}, + 'Ethernet2/2.105': {'adjacencies': {'oshxdb002-xdb': {'neighbor_snpa': { + 'N/A': {'level': {'2': {'hold_time': '00:00:23', 'state': 'UP'}}}}}}}}}, + 'odeprod': {'interfaces': { + 'Port-channel1.104': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:24', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.104': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:27', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.104': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:25', + 'state': 'UP'}}}}}}}}}, + 'excontrol': {'interfaces': { + 'Port-channel1.102': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:22', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.102': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:25', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.102': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:23', + 'state': 'UP'}}}}}}}}}, + 'default': {}, 'oos-be': { + 'interfaces': {'Port-channel1.108': {'adjacencies': {'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': {'2': {'hold_time': '00:00:23', 'state': 'UP'}}}}}}}, + 'Ethernet1/2.108': {'adjacencies': {'sojxdb001-xdb': { + 'neighbor_snpa': {'N/A': {'level': { + '2': {'hold_time': '00:00:23', 'state': 'UP'}}}}}}}, + 'Ethernet2/2.108': {'adjacencies': {'oshxdb002-xdb': { + 'neighbor_snpa': {'N/A': {'level': { + '2': {'hold_time': '00:00:24', 'state': 'UP'}}}}}}}}}, + 'oon-hybrid': {'interfaces': { + 'Port-channel1.106': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:29', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.106': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:26', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.106': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:28', + 'state': 'UP'}}}}}}}}}, + 'exnotprod': {'interfaces': { + 'Port-channel1.103': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:25', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.103': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:30', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.103': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:26', + 'state': 'UP'}}}}}}}}}, + 'exrestrict': {'interfaces': { + 'Port-channel1.100': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:24', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.100': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:22', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.100': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:24', + 'state': 'UP'}}}}}}}}}, + 'exwan-netconf': {'interfaces': { + 'Port-channel1.107': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:26', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.107': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:24', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.107': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:23', + 'state': 'UP'}}}}}}}}}, + 'exuuser': {'interfaces': { + 'Port-channel1.101': { + 'adjacencies': { + 'sebxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:25', + 'state': 'UP'}}}}}}}, + 'Ethernet1/2.101': { + 'adjacencies': { + 'sojxdb001-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:24', + 'state': 'UP'}}}}}}}, + 'Ethernet2/2.101': { + 'adjacencies': { + 'oshxdb002-xdb': { + 'neighbor_snpa': { + 'N/A': {'level': { + '2': { + 'hold_time': '00:00:25', + 'state': 'UP'}}}}}}}}}}}}} diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_output.txt new file mode 100644 index 0000000000..04082d42a7 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisAdjacency/cli/equal/golden_output_3_output.txt @@ -0,0 +1,78 @@ +show isis adjacency vrf all + +IS-IS process: 65100 VRF: osatm +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:31 port-channel1.105 +sojxdb001-xdb N/A 2 UP 00:00:22 Ethernet1/2.105 +oshxdb002-xdb N/A 2 UP 00:00:23 Ethernet2/2.105 + +IS-IS process: 65100 VRF: odeprod +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:24 port-channel1.104 +sojxdb001-xdb N/A 2 UP 00:00:27 Ethernet1/2.104 +oshxdb002-xdb N/A 2 UP 00:00:25 Ethernet2/2.104 + +IS-IS process: 65100 VRF: excontrol +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:22 port-channel1.102 +sojxdb001-xdb N/A 2 UP 00:00:25 Ethernet1/2.102 +oshxdb002-xdb N/A 2 UP 00:00:23 Ethernet2/2.102 + +IS-IS process: 65100 VRF: default +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface + +IS-IS process: 65100 VRF: oos-be +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:23 port-channel1.108 +sojxdb001-xdb N/A 2 UP 00:00:23 Ethernet1/2.108 +oshxdb002-xdb N/A 2 UP 00:00:24 Ethernet2/2.108 + +IS-IS process: 65100 VRF: oon-hybrid +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:29 port-channel1.106 +sojxdb001-xdb N/A 2 UP 00:00:26 Ethernet1/2.106 +oshxdb002-xdb N/A 2 UP 00:00:28 Ethernet2/2.106 + +IS-IS process: 65100 VRF: exnotprod +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:25 port-channel1.103 +sojxdb001-xdb N/A 2 UP 00:00:30 Ethernet1/2.103 +oshxdb002-xdb N/A 2 UP 00:00:26 Ethernet2/2.103 + +IS-IS process: 65100 VRF: exrestrict +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:24 port-channel1.100 +sojxdb001-xdb N/A 2 UP 00:00:22 Ethernet1/2.100 +oshxdb002-xdb N/A 2 UP 00:00:24 Ethernet2/2.100 + +IS-IS process: 65100 VRF: exwan-netconf +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:26 port-channel1.107 +sojxdb001-xdb N/A 2 UP 00:00:24 Ethernet1/2.107 +oshxdb002-xdb N/A 2 UP 00:00:23 Ethernet2/2.107 + +IS-IS process: 65100 VRF: exuuser +IS-IS adjacency database: +Legend: '!': No AF level connectivity in given topology +System ID SNPA Level State Hold Time Interface +sebxdb002-xdb N/A 2 UP 00:00:25 port-channel1.101 +sojxdb001-xdb N/A 2 UP 00:00:24 Ethernet1/2.101 +oshxdb002-xdb N/A 2 UP 00:00:25 Ethernet2/2.101 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_golden_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_golden_output.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_output_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/empty/empty_output_output.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_expected.py b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_expected.py new file mode 100644 index 0000000000..046f2380a7 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_expected.py @@ -0,0 +1,209 @@ +expected_output = {'instance': {'65100': {'vrf': {'osatm': {'hostname_db': { + 'hostname': {'0101.0006.8050.00-00': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8051.00-00': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8052.00-00': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8053.00-00': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8054.00-00': {'hostname': 'sebdci001-dci', 'level': [1, 2], + 'local_router': True}, + '0101.0006.8055.00-00': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8056.00-00': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8057.00-00': {'hostname': 'sojdci002-dci', 'level': [2]}}}}, + 'odeprod': {'hostname_db': { + 'hostname': { + '0101.0006.8040.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8041.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8042.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8043.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8044.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8045.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8046.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8047.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'excontrol': {'hostname_db': { + 'hostname': { + '0101.0006.8020.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8021.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8022.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8023.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8024.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8025.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8026.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8027.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'default': {}, 'oos-be': { + 'hostname_db': {'hostname': { + '0101.0006.8080.00-00': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8081.00-00': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8082.00-00': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8083.00-00': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8084.00-00': {'hostname': 'sebdci001-dci', 'level': [1, 2], + 'local_router': True}, + '0101.0006.8085.00-00': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8086.00-00': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8087.00-00': {'hostname': 'sojdci002-dci', 'level': [2]}}}}, + 'oon-hybrid': {'hostname_db': { + 'hostname': { + '0101.0006.8060.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8061.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8062.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8063.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8064.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8065.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8066.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8067.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'exnotprod': {'hostname_db': { + 'hostname': { + '0101.0006.8030.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8031.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8032.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8033.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8034.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8035.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8036.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8037.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'exrestrict': {'hostname_db': { + 'hostname': { + '0101.0006.8000.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8001.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8002.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8003.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8004.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8005.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8006.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8007.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'exwan-netconf': {'hostname_db': { + 'hostname': { + '0101.0006.8070.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8071.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8072.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8073.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8074.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8075.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8076.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8077.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'exuuser': {'hostname_db': {'hostname': { + '0101.0006.8010.00-00': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8011.00-00': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8012.00-00': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8013.00-00': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8014.00-00': { + 'hostname': 'sebdci001-dci', + 'level': [1, 2], + 'local_router': True}, + '0101.0006.8015.00-00': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8016.00-00': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8017.00-00': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}}}}} diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_output.txt new file mode 100644 index 0000000000..f7ef3a2202 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisHostname/cli/equal/golden_output_1_output.txt @@ -0,0 +1,112 @@ +show isis hostname detail vrf all + +IS-IS Process: 65100 dynamic hostname table VRF: osatm + Level LSP ID Dynamic hostname + 2 0101.0006.8050.00-00 oshdci001-DCI + 2 0101.0006.8051.00-00 oshdci002-DCI + 2 0101.0006.8052.00-00 ohidci001-DCI + 2 0101.0006.8053.00-00 ohidci002-DCI + 1 0101.0006.8054.00-00* sebdci001-dci + 2 0101.0006.8054.00-00* sebdci001-dci + 2 0101.0006.8055.00-00 sebdci002-dci + 2 0101.0006.8056.00-00 sojdci001-dci + 2 0101.0006.8057.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: odeprod + Level LSP ID Dynamic hostname + 2 0101.0006.8040.00-00 oshdci001-DCI + 2 0101.0006.8041.00-00 oshdci002-DCI + 2 0101.0006.8042.00-00 ohidci001-DCI + 2 0101.0006.8043.00-00 ohidci002-DCI + 1 0101.0006.8044.00-00* sebdci001-dci + 2 0101.0006.8044.00-00* sebdci001-dci + 2 0101.0006.8045.00-00 sebdci002-dci + 2 0101.0006.8046.00-00 sojdci001-dci + 2 0101.0006.8047.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: excontrol + Level LSP ID Dynamic hostname + 2 0101.0006.8020.00-00 oshdci001-DCI + 2 0101.0006.8021.00-00 oshdci002-DCI + 2 0101.0006.8022.00-00 ohidci001-DCI + 2 0101.0006.8023.00-00 ohidci002-DCI + 1 0101.0006.8024.00-00* sebdci001-dci + 2 0101.0006.8024.00-00* sebdci001-dci + 2 0101.0006.8025.00-00 sebdci002-dci + 2 0101.0006.8026.00-00 sojdci001-dci + 2 0101.0006.8027.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: default + Level LSP ID Dynamic hostname + +IS-IS Process: 65100 dynamic hostname table VRF: oos-be + Level LSP ID Dynamic hostname + 2 0101.0006.8080.00-00 oshdci001-DCI + 2 0101.0006.8081.00-00 oshdci002-DCI + 2 0101.0006.8082.00-00 ohidci001-DCI + 2 0101.0006.8083.00-00 ohidci002-DCI + 1 0101.0006.8084.00-00* sebdci001-dci + 2 0101.0006.8084.00-00* sebdci001-dci + 2 0101.0006.8085.00-00 sebdci002-dci + 2 0101.0006.8086.00-00 sojdci001-dci + 2 0101.0006.8087.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: oon-hybrid + Level LSP ID Dynamic hostname + 2 0101.0006.8060.00-00 oshdci001-DCI + 2 0101.0006.8061.00-00 oshdci002-DCI + 2 0101.0006.8062.00-00 ohidci001-DCI + 2 0101.0006.8063.00-00 ohidci002-DCI + 1 0101.0006.8064.00-00* sebdci001-dci + 2 0101.0006.8064.00-00* sebdci001-dci + 2 0101.0006.8065.00-00 sebdci002-dci + 2 0101.0006.8066.00-00 sojdci001-dci + 2 0101.0006.8067.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exnotprod + Level LSP ID Dynamic hostname + 2 0101.0006.8030.00-00 oshdci001-DCI + 2 0101.0006.8031.00-00 oshdci002-DCI + 2 0101.0006.8032.00-00 ohidci001-DCI + 2 0101.0006.8033.00-00 ohidci002-DCI + 1 0101.0006.8034.00-00* sebdci001-dci + 2 0101.0006.8034.00-00* sebdci001-dci + 2 0101.0006.8035.00-00 sebdci002-dci + 2 0101.0006.8036.00-00 sojdci001-dci + 2 0101.0006.8037.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exrestrict + Level LSP ID Dynamic hostname + 2 0101.0006.8000.00-00 oshdci001-DCI + 2 0101.0006.8001.00-00 oshdci002-DCI + 2 0101.0006.8002.00-00 ohidci001-DCI + 2 0101.0006.8003.00-00 ohidci002-DCI + 1 0101.0006.8004.00-00* sebdci001-dci + 2 0101.0006.8004.00-00* sebdci001-dci + 2 0101.0006.8005.00-00 sebdci002-dci + 2 0101.0006.8006.00-00 sojdci001-dci + 2 0101.0006.8007.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exwan-netconf + Level LSP ID Dynamic hostname + 2 0101.0006.8070.00-00 oshdci001-DCI + 2 0101.0006.8071.00-00 oshdci002-DCI + 2 0101.0006.8072.00-00 ohidci001-DCI + 2 0101.0006.8073.00-00 ohidci002-DCI + 1 0101.0006.8074.00-00* sebdci001-dci + 2 0101.0006.8074.00-00* sebdci001-dci + 2 0101.0006.8075.00-00 sebdci002-dci + 2 0101.0006.8076.00-00 sojdci001-dci + 2 0101.0006.8077.00-00 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exuuser + Level LSP ID Dynamic hostname + 2 0101.0006.8010.00-00 oshdci001-DCI + 2 0101.0006.8011.00-00 oshdci002-DCI + 2 0101.0006.8012.00-00 ohidci001-DCI + 2 0101.0006.8013.00-00 ohidci002-DCI + 1 0101.0006.8014.00-00* sebdci001-dci + 2 0101.0006.8014.00-00* sebdci001-dci + 2 0101.0006.8015.00-00 sebdci002-dci + 2 0101.0006.8016.00-00 sojdci001-dci + 2 0101.0006.8017.00-00 sojdci002-dci diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_golden_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_golden_output.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_output_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/empty/empty_output_output.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_expected.py b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_expected.py new file mode 100644 index 0000000000..154f62d96c --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_expected.py @@ -0,0 +1,128 @@ +expected_output = {'instance': {'65100': {'vrf': {'osatm': {'hostname_db': { + 'hostname': {'0101.0006.8050': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8051': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8052': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8053': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8054': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8055': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8056': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8057': {'hostname': 'sojdci002-dci', 'level': [2]}}}}, + 'odeprod': {'hostname_db': { + 'hostname': {'0101.0006.8040': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8041': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8042': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8043': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8044': { + 'hostname': 'sebdci001-dci', + 'level': [1], + 'local_router': True}, + '0101.0006.8045': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8046': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8047': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'excontrol': {'hostname_db': { + 'hostname': {'0101.0006.8020': { + 'hostname': 'oshdci001-DCI', + 'level': [2]}, + '0101.0006.8021': { + 'hostname': 'oshdci002-DCI', + 'level': [2]}, + '0101.0006.8022': { + 'hostname': 'ohidci001-DCI', + 'level': [2]}, + '0101.0006.8023': { + 'hostname': 'ohidci002-DCI', + 'level': [2]}, + '0101.0006.8024': { + 'hostname': 'sebdci001-dci', + 'level': [1], + 'local_router': True}, + '0101.0006.8025': { + 'hostname': 'sebdci002-dci', + 'level': [2]}, + '0101.0006.8026': { + 'hostname': 'sojdci001-dci', + 'level': [2]}, + '0101.0006.8027': { + 'hostname': 'sojdci002-dci', + 'level': [2]}}}}, + 'default': {}, 'oos-be': { + 'hostname_db': { + 'hostname': {'0101.0006.8080': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8081': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8082': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8083': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8084': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8085': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8086': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8087': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}, 'oon-hybrid': { + 'hostname_db': { + 'hostname': {'0101.0006.8060': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8061': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8062': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8063': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8064': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8065': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8066': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8067': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}, 'exnotprod': { + 'hostname_db': { + 'hostname': {'0101.0006.8030': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8031': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8032': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8033': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8034': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8035': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8036': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8037': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}, 'exrestrict': { + 'hostname_db': { + 'hostname': {'0101.0006.8000': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8001': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8002': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8003': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8004': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8005': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8006': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8007': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}, 'exwan-netconf': { + 'hostname_db': { + 'hostname': {'0101.0006.8070': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8071': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8072': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8073': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8074': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8075': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8076': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8077': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}, 'exuuser': {'hostname_db': { + 'hostname': {'0101.0006.8010': {'hostname': 'oshdci001-DCI', 'level': [2]}, + '0101.0006.8011': {'hostname': 'oshdci002-DCI', 'level': [2]}, + '0101.0006.8012': {'hostname': 'ohidci001-DCI', 'level': [2]}, + '0101.0006.8013': {'hostname': 'ohidci002-DCI', 'level': [2]}, + '0101.0006.8014': {'hostname': 'sebdci001-dci', 'level': [1], + 'local_router': True}, + '0101.0006.8015': {'hostname': 'sebdci002-dci', 'level': [2]}, + '0101.0006.8016': {'hostname': 'sojdci001-dci', 'level': [2]}, + '0101.0006.8017': {'hostname': 'sojdci002-dci', + 'level': [2]}}}}}}}} diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_output.txt new file mode 100644 index 0000000000..8093f1cabd --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisHostnameDetail/cli/equal/golden_output_1_output.txt @@ -0,0 +1,103 @@ +show isis hostname vrf all + +IS-IS Process: 65100 dynamic hostname table VRF: osatm + Level System ID Dynamic hostname + 2 0101.0006.8050 oshdci001-DCI + 2 0101.0006.8051 oshdci002-DCI + 2 0101.0006.8052 ohidci001-DCI + 2 0101.0006.8053 ohidci002-DCI + 1 0101.0006.8054* sebdci001-dci + 2 0101.0006.8055 sebdci002-dci + 2 0101.0006.8056 sojdci001-dci + 2 0101.0006.8057 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: odeprod + Level System ID Dynamic hostname + 2 0101.0006.8040 oshdci001-DCI + 2 0101.0006.8041 oshdci002-DCI + 2 0101.0006.8042 ohidci001-DCI + 2 0101.0006.8043 ohidci002-DCI + 1 0101.0006.8044* sebdci001-dci + 2 0101.0006.8045 sebdci002-dci + 2 0101.0006.8046 sojdci001-dci + 2 0101.0006.8047 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: excontrol + Level System ID Dynamic hostname + 2 0101.0006.8020 oshdci001-DCI + 2 0101.0006.8021 oshdci002-DCI + 2 0101.0006.8022 ohidci001-DCI + 2 0101.0006.8023 ohidci002-DCI + 1 0101.0006.8024* sebdci001-dci + 2 0101.0006.8025 sebdci002-dci + 2 0101.0006.8026 sojdci001-dci + 2 0101.0006.8027 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: default + Level System ID Dynamic hostname + +IS-IS Process: 65100 dynamic hostname table VRF: oos-be + Level System ID Dynamic hostname + 2 0101.0006.8080 oshdci001-DCI + 2 0101.0006.8081 oshdci002-DCI + 2 0101.0006.8082 ohidci001-DCI + 2 0101.0006.8083 ohidci002-DCI + 1 0101.0006.8084* sebdci001-dci + 2 0101.0006.8085 sebdci002-dci + 2 0101.0006.8086 sojdci001-dci + 2 0101.0006.8087 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: oon-hybrid + Level System ID Dynamic hostname + 2 0101.0006.8060 oshdci001-DCI + 2 0101.0006.8061 oshdci002-DCI + 2 0101.0006.8062 ohidci001-DCI + 2 0101.0006.8063 ohidci002-DCI + 1 0101.0006.8064* sebdci001-dci + 2 0101.0006.8065 sebdci002-dci + 2 0101.0006.8066 sojdci001-dci + 2 0101.0006.8067 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exnotprod + Level System ID Dynamic hostname + 2 0101.0006.8030 oshdci001-DCI + 2 0101.0006.8031 oshdci002-DCI + 2 0101.0006.8032 ohidci001-DCI + 2 0101.0006.8033 ohidci002-DCI + 1 0101.0006.8034* sebdci001-dci + 2 0101.0006.8035 sebdci002-dci + 2 0101.0006.8036 sojdci001-dci + 2 0101.0006.8037 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exrestrict + Level System ID Dynamic hostname + 2 0101.0006.8000 oshdci001-DCI + 2 0101.0006.8001 oshdci002-DCI + 2 0101.0006.8002 ohidci001-DCI + 2 0101.0006.8003 ohidci002-DCI + 1 0101.0006.8004* sebdci001-dci + 2 0101.0006.8005 sebdci002-dci + 2 0101.0006.8006 sojdci001-dci + 2 0101.0006.8007 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exwan-netconf + Level System ID Dynamic hostname + 2 0101.0006.8070 oshdci001-DCI + 2 0101.0006.8071 oshdci002-DCI + 2 0101.0006.8072 ohidci001-DCI + 2 0101.0006.8073 ohidci002-DCI + 1 0101.0006.8074* sebdci001-dci + 2 0101.0006.8075 sebdci002-dci + 2 0101.0006.8076 sojdci001-dci + 2 0101.0006.8077 sojdci002-dci + +IS-IS Process: 65100 dynamic hostname table VRF: exuuser + Level System ID Dynamic hostname + 2 0101.0006.8010 oshdci001-DCI + 2 0101.0006.8011 oshdci002-DCI + 2 0101.0006.8012 ohidci001-DCI + 2 0101.0006.8013 ohidci002-DCI + 1 0101.0006.8014* sebdci001-dci + 2 0101.0006.8015 sebdci002-dci + 2 0101.0006.8016 sojdci001-dci + 2 0101.0006.8017 sojdci002-dci diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_expected.py b/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_expected.py new file mode 100644 index 0000000000..0fce264bc6 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_expected.py @@ -0,0 +1,1039 @@ +expected_output = {'instance': {'65100': {'vrf': {'osatm': {'interfaces': { + 'loopback105': {'name': 'loopback105', 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.54', 'ipv4_subnet': '10.101.68.54/32', + 'ipv6': {'3620:82:e000:50::4/128': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:50::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': {'level_1': {}, 'level_2': {'auth_check': 'set'}}, + 'index': '0x0002', 'local_circuit_id': '0x01', 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1-2', + 'levels': {'1': {'metric': '1'}, '2': {'metric': '1'}}, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'yes', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.105': {'name': 'port-channel1.105', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.154', 'ipv4_subnet': '10.101.68.154/31', + 'ipv6': {'3620:82:e000:52::4/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:52::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.105': {'name': 'Ethernet1/2.105', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.108', 'ipv4_subnet': '10.101.69.108/31', + 'ipv6': {'3620:82:e000:52::1e/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:52::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.105': {'name': 'Ethernet2/2.105', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.53', 'ipv4_subnet': '10.101.69.52/31', + 'ipv6': {'3620:82:e000:52::17/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:52::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, 'odeprod': {'interfaces': { + 'loopback104': {'name': 'loopback104', 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.44', 'ipv4_subnet': '10.101.68.44/32', + 'ipv6': {'3620:82:e000:40::4/128': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:40::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': {'level_1': {}, 'level_2': {'auth_check': 'set'}}, + 'index': '0x0002', 'local_circuit_id': '0x01', 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1-2', + 'levels': {'1': {'metric': '1'}, '2': {'metric': '1'}}, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'yes', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.104': {'name': 'port-channel1.104', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.144', 'ipv4_subnet': '10.101.68.144/31', + 'ipv6': {'3620:82:e000:42::4/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:42::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.104': {'name': 'Ethernet1/2.104', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.106', 'ipv4_subnet': '10.101.69.106/31', + 'ipv6': {'3620:82:e000:42::1e/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:42::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.104': {'name': 'Ethernet2/2.104', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.51', 'ipv4_subnet': '10.101.69.50/31', + 'ipv6': {'3620:82:e000:42::17/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:42::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, 'excontrol': { + 'interfaces': { + 'loopback102': {'name': 'loopback102', 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.24', 'ipv4_subnet': '10.101.68.24/32', + 'ipv6': {'3620:82:e000:20::4/128': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:20::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': {'level_1': {}, + 'level_2': {'auth_check': 'set'}}, + 'index': '0x0002', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': {'1': {'metric': '1'}, '2': {'metric': '1'}}, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'yes', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.102': {'name': 'port-channel1.102', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.124', + 'ipv4_subnet': '10.101.68.124/31', + 'ipv6': {'3620:82:e000:22::4/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:22::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', + 'fwdng': 'UP', 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', 'metric_cfg': 'yes', + 'fwdng': 'UP', 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.102': {'name': 'Ethernet1/2.102', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.102', 'ipv4_subnet': '10.101.69.102/31', + 'ipv6': {'3620:82:e000:22::1e/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:22::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', 'ipv6_cfg': 'no'}, + '2': {'metric': '140', 'metric_cfg': 'yes', + 'fwdng': 'UP', 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.102': {'name': 'Ethernet2/2.102', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.47', 'ipv4_subnet': '10.101.69.46/31', + 'ipv6': {'3620:82:e000:22::17/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:22::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', 'local_circuit_id': '0x01', + 'circuit_type': 'L2', 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', 'mtr': 'disabled', + 'passive': 'level-1', 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', 'ipv6_cfg': 'no'}, + '2': {'metric': '700', 'metric_cfg': 'yes', + 'fwdng': 'UP', 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', 'ipv6_cfg': 'yes'}}}}}}}, + 'default': {}, 'oos-be': { + 'interfaces': {'loopback108': {'name': 'loopback108', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.84', + 'ipv4_subnet': '10.101.68.84/32', 'ipv6': { + '3620:82:e000:80::4/128': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:80::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': {'level_1': {}, 'level_2': { + 'auth_check': 'set'}}, 'index': '0x0002', + 'local_circuit_id': '0x01', 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1-2', + 'levels': {'1': {'metric': '1'}, + '2': {'metric': '1'}}, 'topologies': { + '0': {'level': {'1': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', 'ipv6_cfg': 'no'}, + '2': {'metric': '1', 'metric_cfg': 'no', 'fwdng': 'UP', + 'ipv4_mt': 'DN', 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.108': {'name': 'port-channel1.108', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.184', + 'ipv4_subnet': '10.101.68.184/31', + 'ipv6': {'3620:82:e000:82::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:82::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1', + 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.108': {'name': 'Ethernet1/2.108', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.170', + 'ipv4_subnet': '10.101.69.170/31', 'ipv6': { + '3620:82:e000:82::1e/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:82::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1', + 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', + 'fwdng': 'UP', 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.108': {'name': 'Ethernet2/2.108', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.155', + 'ipv4_subnet': '10.101.69.154/31', 'ipv6': { + '3620:82:e000:82::17/127': {'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:82::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', 'passive': 'level-1', + 'mtu': 9216, 'lsp_interval_ms': 33, + 'topologies': {'0': {'level': { + '1': {'metric': '1', 'metric_cfg': 'no', + 'fwdng': 'UP', 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', 'fwdng': 'UP', + 'ipv4_mt': 'UP', 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, + 'oon-hybrid': {'interfaces': { + 'loopback106': { + 'name': 'loopback106', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.64', + 'ipv4_subnet': '10.101.68.64/32', + 'ipv6': { + '3620:82:e000:60::4/128': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:60::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': { + 'level_1': {}, + 'level_2': { + 'auth_check': 'set'}}, + 'index': '0x0002', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': { + '1': {'metric': '1'}, + '2': {'metric': '1'}}, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.106': { + 'name': 'port-channel1.106', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.164', + 'ipv4_subnet': '10.101.68.164/31', + 'ipv6': { + '3620:82:e000:62::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:62::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.106': { + 'name': 'Ethernet1/2.106', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.110', + 'ipv4_subnet': '10.101.69.110/31', + 'ipv6': { + '3620:82:e000:62::1e/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:62::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.106': { + 'name': 'Ethernet2/2.106', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.55', + 'ipv4_subnet': '10.101.69.54/31', + 'ipv6': { + '3620:82:e000:62::17/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:62::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, + 'exnotprod': {'interfaces': { + 'loopback103': { + 'name': 'loopback103', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.34', + 'ipv4_subnet': '10.101.68.34/32', + 'ipv6': { + '3620:82:e000:30::4/128': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:30::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': { + 'level_1': {}, + 'level_2': { + 'auth_check': 'set'}}, + 'index': '0x0002', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': { + '1': {'metric': '1'}, + '2': {'metric': '1'}}, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.103': { + 'name': 'port-channel1.103', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.134', + 'ipv4_subnet': '10.101.68.134/31', + 'ipv6': { + '3620:82:e000:32::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:32::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.103': { + 'name': 'Ethernet1/2.103', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.104', + 'ipv4_subnet': '10.101.69.104/31', + 'ipv6': { + '3620:82:e000:32::1e/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:32::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.103': { + 'name': 'Ethernet2/2.103', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.49', + 'ipv4_subnet': '10.101.69.48/31', + 'ipv6': { + '3620:82:e000:32::17/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:32::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, + 'exrestrict': {'interfaces': { + 'loopback100': { + 'name': 'loopback100', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.4', + 'ipv4_subnet': '10.101.68.4/32', + 'ipv6': { + '3620:82:e000::4/128': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': { + 'level_1': {}, + 'level_2': { + 'auth_check': 'set'}}, + 'index': '0x0002', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': { + '1': {'metric': '1'}, + '2': {'metric': '1'}}, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.100': { + 'name': 'port-channel1.100', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.104', + 'ipv4_subnet': '10.101.68.104/31', + 'ipv6': { + '3620:82:e000:2::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:2::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.100': { + 'name': 'Ethernet1/2.100', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.98', + 'ipv4_subnet': '10.101.69.98/31', + 'ipv6': { + '3620:82:e000:2::1e/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:2::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.100': { + 'name': 'Ethernet2/2.100', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.43', + 'ipv4_subnet': '10.101.69.42/31', + 'ipv6': { + '3620:82:e000:2::17/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:2::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, + 'exwan-netconf': {'interfaces': { + 'loopback107': { + 'name': 'loopback107', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.74', + 'ipv4_subnet': '10.101.68.74/32', + 'ipv6': { + '3620:82:e000:70::4/128': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:70::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': { + 'level_1': {}, + 'level_2': { + 'auth_check': 'set'}}, + 'index': '0x0002', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': { + '1': {'metric': '1'}, + '2': {'metric': '1'}}, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.107': { + 'name': 'port-channel1.107', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.174', + 'ipv4_subnet': '10.101.68.174/31', + 'ipv6': { + '3620:82:e000:72::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:72::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.107': { + 'name': 'Ethernet1/2.107', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.168', + 'ipv4_subnet': '10.101.69.168/31', + 'ipv6': { + '3620:82:e000:72::1e/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:72::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.107': { + 'name': 'Ethernet2/2.107', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.153', + 'ipv4_subnet': '10.101.69.152/31', + 'ipv6': { + '3620:82:e000:72::17/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:72::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}, + 'exuuser': {'interfaces': { + 'loopback101': { + 'name': 'loopback101', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.14', + 'ipv4_subnet': '10.101.68.14/32', + 'ipv6': { + '3620:82:e000:10::4/128': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:10::4/128', + 'ipv6_link_local_address': 'fe80::f6db:e6ff:fe4a:6333', + 'authentication': { + 'level_1': {}, + 'level_2': { + 'auth_check': 'set'}}, + 'index': '0x0002', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally disabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1-2', + 'levels': { + '1': {'metric': '1'}, + '2': {'metric': '1'}}, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'yes'}}}}}, + 'port-channel1.101': { + 'name': 'port-channel1.101', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.68.114', + 'ipv4_subnet': '10.101.68.114/31', + 'ipv6': { + '3620:82:e000:12::4/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:12::4/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0001', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '5', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet1/2.101': { + 'name': 'Ethernet1/2.101', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.100', + 'ipv4_subnet': '10.101.69.100/31', + 'ipv6': { + '3620:82:e000:12::1e/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:12::1e/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0003', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '140', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}, + 'Ethernet2/2.101': { + 'name': 'Ethernet2/2.101', + 'status': 'protocol-up/link-up/admin-up', + 'ipv4': '10.101.69.45', + 'ipv4_subnet': '10.101.69.44/31', + 'ipv6': { + '3620:82:e000:12::17/127': { + 'state': 'VALID'}}, + 'ipv6_subnet': '3620:82:e000:12::16/127', + 'ipv6_link_local_address': 'fe80::2de:fbff:fef2:ee41', + 'index': '0x0004', + 'local_circuit_id': '0x01', + 'circuit_type': 'L2', + 'bfd_ipv4': 'locally enabled', + 'bfd_ipv6': 'locally disabled', + 'mtr': 'disabled', + 'passive': 'level-1', + 'mtu': 9216, + 'lsp_interval_ms': 33, + 'topologies': {'0': { + 'level': { + '1': {'metric': '1', + 'metric_cfg': 'no', + 'fwdng': 'UP', + 'ipv4_mt': 'DN', + 'ipv4_cfg': 'no', + 'ipv6_mt': 'DN', + 'ipv6_cfg': 'no'}, + '2': {'metric': '700', + 'metric_cfg': 'yes', + 'fwdng': 'UP', + 'ipv4_mt': 'UP', + 'ipv4_cfg': 'yes', + 'ipv6_mt': 'UP', + 'ipv6_cfg': 'yes'}}}}}}}}}}} diff --git a/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_output.txt b/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_output.txt new file mode 100644 index 0000000000..1782456ad7 --- /dev/null +++ b/src/genie/libs/parser/nxos/tests/ShowIsisInterface/cli/equal/golden_output_4_output.txt @@ -0,0 +1,1010 @@ +show isis interface vrf all + +IS-IS process: 65100 VRF: osatm +loopback105, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.54, IP subnet: 10.101.68.54/32 + IPv6 address: + 3620:82:e000:50::4/128 [VALID] + IPv6 subnet: 3620:82:e000:50::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback105 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback105 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.105, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.154, IP subnet: 10.101.68.154/31 + IPv6 address: + 3620:82:e000:52::4/127 [VALID] + IPv6 subnet: 3620:82:e000:52::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.105 + BFD IPv6 is locally disabled for Interface port-channel1.105 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16069000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 0.083558 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:41 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.105, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.108, IP subnet: 10.101.69.108/31 + IPv6 address: + 3620:82:e000:52::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:52::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.105 + BFD IPv6 is locally disabled for Interface Ethernet1/2.105 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001069, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:04 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:31 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.105, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.53, IP subnet: 10.101.69.52/31 + IPv6 address: + 3620:82:e000:52::17/127 [VALID] + IPv6 subnet: 3620:82:e000:52::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.105 + BFD IPv6 is locally disabled for Interface Ethernet2/2.105 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081069, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:05 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:41 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: odeprod +loopback104, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.44, IP subnet: 10.101.68.44/32 + IPv6 address: + 3620:82:e000:40::4/128 [VALID] + IPv6 subnet: 3620:82:e000:40::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback104 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback104 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.104, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.144, IP subnet: 10.101.68.144/31 + IPv6 address: + 3620:82:e000:42::4/127 [VALID] + IPv6 subnet: 3620:82:e000:42::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.104 + BFD IPv6 is locally disabled for Interface port-channel1.104 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16068000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:08 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:20 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.104, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.106, IP subnet: 10.101.69.106/31 + IPv6 address: + 3620:82:e000:42::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:42::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.104 + BFD IPv6 is locally disabled for Interface Ethernet1/2.104 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001068, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:07 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:01:00 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.104, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.51, IP subnet: 10.101.69.50/31 + IPv6 address: + 3620:82:e000:42::17/127 [VALID] + IPv6 subnet: 3620:82:e000:42::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.104 + BFD IPv6 is locally disabled for Interface Ethernet2/2.104 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081068, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:03 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:34 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: excontrol +loopback102, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.24, IP subnet: 10.101.68.24/32 + IPv6 address: + 3620:82:e000:20::4/128 [VALID] + IPv6 subnet: 3620:82:e000:20::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback102 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback102 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.102, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.124, IP subnet: 10.101.68.124/31 + IPv6 address: + 3620:82:e000:22::4/127 [VALID] + IPv6 subnet: 3620:82:e000:22::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.102 + BFD IPv6 is locally disabled for Interface port-channel1.102 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16066000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:03 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:34 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.102, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.102, IP subnet: 10.101.69.102/31 + IPv6 address: + 3620:82:e000:22::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:22::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.102 + BFD IPv6 is locally disabled for Interface Ethernet1/2.102 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001066, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:08 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:16 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.102, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.47, IP subnet: 10.101.69.46/31 + IPv6 address: + 3620:82:e000:22::17/127 [VALID] + IPv6 subnet: 3620:82:e000:22::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.102 + BFD IPv6 is locally disabled for Interface Ethernet2/2.102 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081066, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 0.858851 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:48 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: default + +IS-IS process: 65100 VRF: oos-be +loopback108, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.84, IP subnet: 10.101.68.84/32 + IPv6 address: + 3620:82:e000:80::4/128 [VALID] + IPv6 subnet: 3620:82:e000:80::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback108 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback108 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.108, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.184, IP subnet: 10.101.68.184/31 + IPv6 address: + 3620:82:e000:82::4/127 [VALID] + IPv6 subnet: 3620:82:e000:82::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.108 + BFD IPv6 is locally disabled for Interface port-channel1.108 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1606C000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:05 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:46 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.108, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.170, IP subnet: 10.101.69.170/31 + IPv6 address: + 3620:82:e000:82::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:82::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.108 + BFD IPv6 is locally disabled for Interface Ethernet1/2.108 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A00106C, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:07 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:13 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.108, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.155, IP subnet: 10.101.69.154/31 + IPv6 address: + 3620:82:e000:82::17/127 [VALID] + IPv6 subnet: 3620:82:e000:82::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.108 + BFD IPv6 is locally disabled for Interface Ethernet2/2.108 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A08106C, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:01 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:37 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: oon-hybrid +loopback106, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.64, IP subnet: 10.101.68.64/32 + IPv6 address: + 3620:82:e000:60::4/128 [VALID] + IPv6 subnet: 3620:82:e000:60::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback106 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback106 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.106, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.164, IP subnet: 10.101.68.164/31 + IPv6 address: + 3620:82:e000:62::4/127 [VALID] + IPv6 subnet: 3620:82:e000:62::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.106 + BFD IPv6 is locally disabled for Interface port-channel1.106 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1606A000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:07 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:43 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.106, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.110, IP subnet: 10.101.69.110/31 + IPv6 address: + 3620:82:e000:62::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:62::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.106 + BFD IPv6 is locally disabled for Interface Ethernet1/2.106 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A00106A, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:01 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 0.900716 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.106, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.55, IP subnet: 10.101.69.54/31 + IPv6 address: + 3620:82:e000:62::17/127 [VALID] + IPv6 subnet: 3620:82:e000:62::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.106 + BFD IPv6 is locally disabled for Interface Ethernet2/2.106 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A08106A, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:05 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:31 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: exnotprod +loopback103, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.34, IP subnet: 10.101.68.34/32 + IPv6 address: + 3620:82:e000:30::4/128 [VALID] + IPv6 subnet: 3620:82:e000:30::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback103 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback103 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.103, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.134, IP subnet: 10.101.68.134/31 + IPv6 address: + 3620:82:e000:32::4/127 [VALID] + IPv6 subnet: 3620:82:e000:32::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.103 + BFD IPv6 is locally disabled for Interface port-channel1.103 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16067000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:08 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:31 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.103, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.104, IP subnet: 10.101.69.104/31 + IPv6 address: + 3620:82:e000:32::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:32::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.103 + BFD IPv6 is locally disabled for Interface Ethernet1/2.103 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001067, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:04 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:12 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.103, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.49, IP subnet: 10.101.69.48/31 + IPv6 address: + 3620:82:e000:32::17/127 [VALID] + IPv6 subnet: 3620:82:e000:32::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.103 + BFD IPv6 is locally disabled for Interface Ethernet2/2.103 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081067, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:07 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:01 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: exrestrict +loopback100, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.4, IP subnet: 10.101.68.4/32 + IPv6 address: + 3620:82:e000::4/128 [VALID] + IPv6 subnet: 3620:82:e000::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback100 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback100 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.100, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.104, IP subnet: 10.101.68.104/31 + IPv6 address: + 3620:82:e000:2::4/127 [VALID] + IPv6 subnet: 3620:82:e000:2::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.100 + BFD IPv6 is locally disabled for Interface port-channel1.100 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16064000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:02 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:10 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.100, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.98, IP subnet: 10.101.69.98/31 + IPv6 address: + 3620:82:e000:2::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:2::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.100 + BFD IPv6 is locally disabled for Interface Ethernet1/2.100 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001064, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:06 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:48 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.100, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.43, IP subnet: 10.101.69.42/31 + IPv6 address: + 3620:82:e000:2::17/127 [VALID] + IPv6 subnet: 3620:82:e000:2::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.100 + BFD IPv6 is locally disabled for Interface Ethernet2/2.100 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081064, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:01 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:26 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: exwan-netconf +loopback107, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.74, IP subnet: 10.101.68.74/32 + IPv6 address: + 3620:82:e000:70::4/128 [VALID] + IPv6 subnet: 3620:82:e000:70::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback107 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback107 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.107, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.174, IP subnet: 10.101.68.174/31 + IPv6 address: + 3620:82:e000:72::4/127 [VALID] + IPv6 subnet: 3620:82:e000:72::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.107 + BFD IPv6 is locally disabled for Interface port-channel1.107 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1606B000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:03 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:29 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.107, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.168, IP subnet: 10.101.69.168/31 + IPv6 address: + 3620:82:e000:72::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:72::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.107 + BFD IPv6 is locally disabled for Interface Ethernet1/2.107 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A00106B, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:01 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:53 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.107, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.153, IP subnet: 10.101.69.152/31 + IPv6 address: + 3620:82:e000:72::17/127 [VALID] + IPv6 subnet: 3620:82:e000:72::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.107 + BFD IPv6 is locally disabled for Interface Ethernet2/2.107 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A08106B, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:03 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:19 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes + + +IS-IS process: 65100 VRF: exuuser +loopback101, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.14, IP subnet: 10.101.68.14/32 + IPv6 address: + 3620:82:e000:10::4/128 [VALID] + IPv6 subnet: 3620:82:e000:10::4/128 + IPv6 link-local address: fe80::f6db:e6ff:fe4a:6333 + Level1 + No auth type set + No auth check + Level2 + No auth type set + No auth check + Index: 0x0002, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally disabled for Interface loopback101 + BFD does not support AF IPv4 + BFD IPv6 is locally disabled for Interface loopback101 + BFD does not support AF IPv6 + MTR is disabled + Passive level: level-1-2 + Level Metric + 1 1 + 2 1 + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 1 no UP DN yes DN yes + +port-channel1.101, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.68.114, IP subnet: 10.101.68.114/31 + IPv6 address: + 3620:82:e000:12::4/127 [VALID] + IPv6 subnet: 3620:82:e000:12::4/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + No auth type set + No auth check + Index: 0x0001, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface port-channel1.101 + BFD IPv6 is locally disabled for Interface port-channel1.101 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x16065000, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:06 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 5 60 00:00:24 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 5 yes UP UP yes UP yes + +Ethernet1/2.101, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.100, IP subnet: 10.101.69.100/31 + IPv6 address: + 3620:82:e000:12::1e/127 [VALID] + IPv6 subnet: 3620:82:e000:12::1e/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0003, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet1/2.101 + BFD IPv6 is locally disabled for Interface Ethernet1/2.101 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A001065, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:08 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 140 60 00:00:26 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 140 yes UP UP yes UP yes + +Ethernet2/2.101, Interface status: protocol-up/link-up/admin-up + IP address: 10.101.69.45, IP subnet: 10.101.69.44/31 + IPv6 address: + 3620:82:e000:12::17/127 [VALID] + IPv6 subnet: 3620:82:e000:12::16/127 + IPv6 link-local address: fe80::2de:fbff:fef2:ee41 + Auth type:MD5 + Auth keychain: ISISKeyChain + Auth check set + Index: 0x0004, Local Circuit ID: 0x01, Circuit Type: L2 + BFD IPv4 is locally enabled for Interface Ethernet2/2.101 + BFD IPv6 is locally disabled for Interface Ethernet2/2.101 + MTR is disabled + Passive level: level-1 + Extended Local Circuit ID: 0x1A081065, P2P Circuit ID: 0000.0000.0000.00 + Retx interval: 5, Retx throttle interval: 66 ms + LSP interval: 33 ms, MTU: 9216 + MTU check OFF on P2P interface + P2P Adjs: 1, AdjsUp: 1, Priority 64 + Hello Interval: 10, Multi: 3, Next IIH: 00:00:01 + MT Adjs AdjsUp Metric CSNP Next CSNP Last LSP ID + 1 0 0 1 60 Inactive ffff.ffff.ffff.ff-ff + 2 1 1 700 60 00:00:28 ffff.ffff.ffff.ff-ff + Topologies enabled: + L MT Metric MetricCfg Fwdng IPV4-MT IPV4Cfg IPV6-MT IPV6Cfg + 1 0 1 no UP DN no DN no + 2 0 700 yes UP UP yes UP yes